Advertisement
dahpiglz

skyturn

Apr 7th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. skyturnspeed = 0.01
  2.  
  3. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  4. print(v.Name)
  5. local p = Instance.new("Hint")
  6. p.Parent = v
  7. p.Text = ("Boom boom explosions woah wow omg so cooool!")
  8. end
  9.  
  10. while true do
  11. wait(0.01)
  12. print(skyturnspeed)
  13. game.Lighting.ClockTime = game.Lighting.ClockTime + skyturnspeed
  14. if skyturnspeed < 1 then
  15. skyturnspeed = skyturnspeed * 1.01
  16. end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement