Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. -Loading Screen By: Tamasdzt
  2. script.Parent:RemoveDefaultLoadingScreen()
  3.  
  4. Workspace Script
  5. game.Players.PlayerAdded:connect(function(player)
  6. local gui = game.ReplicatedStorage:WaitForChild("GUI Name Here"):Clone()
  7. gui.Parent = player.PlayerGui
  8. gui.Script.Disabled = false
  9.  
  10. ScreenGui Script
  11. local contentprovider = game.ContentProvider
  12.  
  13. while wait() do
  14. if contentprovider.RequestQueueSize == 0 then
  15. script.Parent.Frame:TweenPosition(UDim2.new(0, 0, -1, 0),"In","Quart")
  16. wait(1)
  17. script.Parent:Destroy()
  18. end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement