Advertisement
RandyPasteBin

Intro Roblox Scripts

Jul 6th, 2019
2,091
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. Replicated Storage (Local)
  2. script.Parent:RemoveDefaultLoadingScreen()
  3.  
  4. WorkSpace Script (Script)
  5.  
  6. game.Players.PlayerAdded:connect(function(player)
  7. local gui = game.ReplicatedStorage:WaitForChild("ScreenGui"):Clone()
  8. gui.Parent = player.PlayerGui
  9. gui.Script.Disabled = false
  10. end)
  11.  
  12. ScreenGui Script (Script)
  13.  
  14. local contentprovider = game.ContentProvider
  15.  
  16. while wait() do --Set to however long you want to wait before the screen goes away
  17. if contentprovider.RequestQueueSize == 0 then
  18. script.Parent.Frame:TweenPosition(UDim2.new(0,0,-1,0),"In","Quart",1)
  19. wait(1)
  20. script.Parent:Destroy()
  21. end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement