Advertisement
iiJosephCats205

eeee

Apr 28th, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. wait(1)
  2. math.randomseed(tick() % 1 * 1e6)
  3. sky = coroutine.create(function()
  4.     while wait(0.3) do
  5.         s = Instance.new("Sky",game.Lighting)
  6.         s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408"
  7.         s.CelestialBodiesShown = false
  8.     end
  9. end)
  10.  
  11.  
  12.  
  13.  
  14. for i,v in pairs(game.Players:GetChildren()) do
  15. end
  16.  
  17. noises = {'rbxassetid://230287740','rbxassetid://271787597','rbxassetid://153752123','rbxassetid://271787503'}
  18.  
  19. sound = coroutine.create(function()
  20.     a = Instance.new("Sound",workspace)
  21.     a.SoundId = "rbxassetid://902601313"
  22.     a.Name = "RAINING MEN"
  23.     a.Volume = 58359
  24.     a.Looped = true
  25.     a:Play()
  26.     while wait(0.2) do
  27.         rainin = workspace:FindFirstChild("RAINING MEN")
  28.         if not rainin then
  29.             a = Instance.new("Sound",workspace)
  30.             a.SoundId = "rbxassetid://902601313"
  31.             a.Name = "RAINING MEN"
  32.             a.Volume = 58359
  33.             a.Looped = true
  34.             a:Play()
  35.         end
  36.     end
  37. end)
  38.  
  39.  
  40.  
  41.  
  42. rain = coroutine.create(function()
  43.     while wait(10 % 1 * 1e2) do
  44.         part = Instance.new("Part",workspace)
  45.         part.Name = "Toad"
  46.        
  47.         mesh = Instance.new("SpecialMesh",part)
  48.        
  49.         sound = Instance.new("Sound",workspace)
  50.        
  51.         part.CanCollide = false
  52.         part.Size = Vector3.new(440,530,380)
  53.         part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  54.    
  55.         sound.SoundId = noises[math.random(1,#noises)]
  56.         sound:Play()
  57.         sound.Ended:connect(function()
  58.             sound:Destroy()
  59.         end)
  60.        
  61.        
  62.         mesh.MeshType = "FileMesh"
  63.         mesh.MeshId = "rbxassetid://430210147"
  64.         mesh.TextureId = "rbxassetid://430210159"
  65.     end
  66. end)
  67. coroutine.resume(sky)
  68. coroutine.resume(sound)
  69. coroutine.resume(rain)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement