Advertisement
Guest User

TOOOOOOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD

a guest
Jan 14th, 2018
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. local breakScript = 60
  2. wait(3)
  3. sky = coroutine.create(function()
  4. while wait(0.3) do
  5. local s = Instance.new("Sky",game.Lighting)
  6. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://227451813","rbxassetid://559660882","rbxassetid://947995509","rbxassetid://824851584","rbxassetid://835633217","rbxassetid://726895156"
  7. s.CelestialBodiesShown = false
  8. end
  9. end)
  10. sound = coroutine.create(function()
  11. local a = Instance.new("Sound",workspace)
  12. a.SoundId = "rbxassetid://141509625"
  13. a.Name = "RAINING MEN"
  14. a.Volume = 58359
  15. a.Looped = true
  16. a:Play()
  17. while wait(0.2) do
  18. local rainin = workspace:FindFirstChild("RAINING MEN")
  19. if not rainin then
  20. a = Instance.new("Sound",workspace)
  21. a.SoundId = "rbxassetid://141509625"
  22. a.Name = "RAINING MEN"
  23. a.Volume = 58359
  24. a.Looped = true
  25. a:Play()
  26. end
  27. end
  28. end)
  29. rain = coroutine.create(function()
  30. while wait(10 % 0.5 * 1e2) do
  31. local part = Instance.new("Part",workspace)
  32. part.Name = "Toad"
  33.  
  34. local mesh = Instance.new("SpecialMesh",part)
  35.  
  36.  
  37. part.CanCollide = false
  38. part.Size = Vector3.new(440,530,380)
  39. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  40.  
  41.  
  42.  
  43. mesh.MeshType = "FileMesh"
  44. mesh.MeshId = "rbxassetid://430210147"
  45. mesh.TextureId = "rbxassetid://430210159"
  46. end
  47. end)
  48.  
  49. coroutine.resume(rain)
  50. coroutine.resume(sound)
  51. coroutine.resume(sky)
  52. wait(breakScript)
  53. script.Disabled = true
  54. workspace["RAINING MEN"]:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement