In my script after it is done doing what it is doing, it moves to a certain area, which happens to be the bottom left. [Another Gui's position]. However it moves, but to the top left like its going to {0,0}
Here is the script:
01 | wait() |
02 | local t = script.Parent |
03 | local location = t.Parent.put.Position |
04 | wait() |
05 | t.Visible = true |
06 | wait( 0.05 ) |
07 | t.Visible = false |
08 | wait( 0.05 ) |
09 | t.Visible = true |
10 | wait( 0.05 ) |
11 | t.Visible = false |
12 | wait( 0.05 ) |
13 | t.Visible = true |
14 | wait( 0.05 ) |
15 | t.Visible = false |
I usually use "Out","Quad" for everything. Try changing it to "Out","Quad". The last time I used another GUI's location to determine where a second GUI should move to, those two worked.