Advertisement
TrashGangJulian

Loading Screen ROBLOX!

Mar 14th, 2020
1,171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. local PlayerGui = game.Players.LocalPlayer:WaitForChild("PlayerGui") |
  2. PlayerGui:SetTopbarTransparency(0) |
  3. local screen = Instance.new("ScreenGui") |
  4. screen.Parent = PlayerGui |
  5. local textLabe1 = Instance.new("TextLabel") |
  6. textLabel.Text = "Welcome To Sniper Battles! Loading..." |
  7. textLabel. FontSize = Enum.FontSize.Size32 |
  8. textLLabel.Parent = screen |
  9. Script.Parent:RemoveDefaultLoadingScreen() |
  10. local count = 0 |
  11. local start = tick() |
  12. while tick() - start <6 do |
  13. textLabel.Text = "Welcome To Sniper Battles! Loading..." .. string.rep(".",count) |
  14. count = (count + 1) % 4 |
  15. wait(5) |
  16. end |
  17. screen.Parent = nil |
  18. ____________________________________________________________________________________|
  19.  
  20. You can change the text label to your game just edit textLabel.Text = then edit the textLabel.Text = string rep! (Copy the inside of the box)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement