very simple, just havent worked with position in a while
https://gyazo.com/af4093136137ae5c86181b8506570359
1 | script.Parent.Text = ( "Start?" ) |
2 | script.Parent.MouseButton 1 Click:Connect( function (Clicked) |
3 |
4 |
5 | script.Parent.Parent.Frame.YouWin.Position = { 0.089 , 0 } , { 0.179 , 0 } |
6 |
7 |
8 |
9 | end ) |
At this line
1 | script.Parent.Parent.Frame.YouWin.Position = { 0.089 , 0 } , { 0.179 , 0 } |
Instead of doing that, do this:
1 | script.Parent.Parent.Frame.YouWin.Position = UDim 2. new( { 0.089 , 0 } , { 0.179 , 0 } ) |
If that doesn't work, try using the second parameter (Offset) to change the position.
-Ducky
Developer
Youtuber