Advertisement
iiJosephCats205

LOL

Jul 4th, 2018
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. wait(1)
  2. math.randomseed(tick() % 1 * 1e6)
  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.  
  11.  
  12. sound = coroutine.create(function()
  13. local a = Instance.new("Sound",workspace)
  14. a.SoundId = "rbxassetid://141509625"
  15. a.Name = "RAINING MEN"
  16. a.Volume = 58359
  17. a.Looped = true
  18. a:Play()
  19. for i = 1,1,1 do
  20. local rainin = workspace:FindFirstChild("RAINING MEN")
  21. if not rainin then
  22. a = Instance.new("Sound",workspace)
  23. a.SoundId = "rbxassetid://141509625"
  24. a.Name = "RAINING MEN"
  25. a.Volume = 58359
  26. a.Looped = true
  27. a:Play()
  28. end
  29. end
  30. end)
  31.  
  32.  
  33.  
  34.  
  35. rain = coroutine.create(function()
  36. while wait(10 % 1 * 1e2) do
  37. local part = Instance.new("Part",workspace)
  38. part.Name = "Toad"
  39.  
  40. local mesh = Instance.new("SpecialMesh",part)
  41.  
  42. sound = Instance.new("Sound",workspace)
  43.  
  44. part.CanCollide = false
  45. part.Size = Vector3.new(440,530,380)
  46. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  47.  
  48.  
  49. mesh.MeshType = "FileMesh"
  50. mesh.MeshId = "rbxassetid://430210147"
  51. mesh.TextureId = "rbxassetid://430210159"
  52. end
  53. end)
  54. coroutine.resume(sky)
  55. coroutine.resume(sound)
  56. coroutine.resume(rain)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement