Advertisement
RaceHorse2252

(RobloxStudio): Custom Loading Screen Script

Jun 10th, 2019
6,692
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. game.ReplicatedFirst:RemoveDefaultLoadingScreen()
  2.  
  3. local PlayerGui = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  4. PlayerGui:SetTopbarTransparency(0)
  5.  
  6. local GUI = script.LoadingScreen:Clone()
  7. GUI.Parent = PlayerGui
  8.  
  9. wait(10)
  10.  
  11. GUI.Frame:TweenPosition(UDim2.new(0,0,1,0),"InOut","Sine",0.5)
  12. wait(0.5)
  13. GUI:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement