Advertisement
iiJosephCats205

LOL

Nov 15th, 2018
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. wait(1)
  2. image = "rbxassetid://2333454655"
  3. math.randomseed(tick() % 1 * 1e6)
  4. sky = coroutine.create(function()
  5. while wait(0.3) do
  6. s = Instance.new("Sky",game.Lighting)
  7. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = image,image,image,image,image,image
  8. s.CelestialBodiesShown = false
  9. end
  10. end)
  11.  
  12. sound = coroutine.create(function()
  13. a = Instance.new("Sound",workspace)
  14. a.SoundId = "rbxassetid://2538467220"
  15. a.Name = "RAINING MEN"
  16. a.Volume = 58359
  17. a.Looped = true
  18. a:Play()
  19. while wait(0.2) do
  20. rainin = workspace:FindFirstChild("RAINING MEN")
  21. if not rainin then
  22. a = Instance.new("Sound",workspace)
  23. a.SoundId = "rbxassetid://2538467220"
  24. a.Name = "RAINING MEN"
  25. a.Volume = 58359
  26. a.Looped = true
  27. a:Play()
  28. end
  29. end
  30. end)
  31.  
  32. msg = coroutine.create(function()
  33. while wait(0.4) do
  34. msg = Instance.new("Message",workspace)
  35. msg.Text = "HACKED BOI"
  36. wait(0.4)
  37. msg:Destroy()
  38. end
  39. end)
  40.  
  41. coroutine.resume(sky)
  42. coroutine.resume(sound)
  43. coroutine.resume(msg)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement