Advertisement
EconomicSerg

Move ScreenGuis in ROBLOX Studio

Oct 21st, 2020
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. -- Choose which one to use or else the script will break
  2.  
  3. -- StarterGui > ScreenGui > Frame > LocalScript
  4.  
  5. wait(5)
  6. script.Parent:TweenSize(UDim2.new(1,0,0.5,0),"Out","Sine",1)
  7.  
  8. -- Or, move the Gui!
  9.  
  10. wait(5)
  11. script.Parent:TweenPosition(UDim2.new(1,0,0.5,0),"Out","Sine",1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement