Advertisement
Guest User

ROBLOX LOADING SCREEN RAW SCRIPT! 2019

a guest
Sep 1st, 2019
1,860
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. Loading screen ---Supplied to you by BananaTara, check out my admin game!---
  2.  
  3. local PlayerGui = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  4. PlayerGui:SetTopbarTransparency(0)
  5.  
  6. local screen = Instance.new("ScreenGui")
  7. screen.Parent = PlayerGui
  8.  
  9. local textlabel = Instance.new("TextLabel")
  10. textlabel.Text = "Loading"
  11. textlabel.Size = UDim2.new(1,0,1,0)
  12. textlabel.FontSize = Enum.FontSize.Size60--Change Font Size
  13. textlabel.BackgroundColor3 = Color3.fromRGB(163,162,165)--Change backround
  14. textlabel.TextColor3 = Color3.fromRGB(1,13,255)--Change Text Color
  15. textlabel.Parent = screen
  16.  
  17. script.Parent:RemoveDefaultLoadingScreen()
  18.  
  19. local count = 0
  20. local start = tick()
  21.  
  22. while tick () - start <6 do
  23. textlabel.Text = "Loading"..string.rep(".", count)
  24. count = (count + 1)
  25.  
  26. if count > 3 then
  27. count = 0
  28. end
  29. wait(0.3)
  30. end
  31.  
  32. screen.Parent = nil
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement