Advertisement
ManlyMemeScripter

Untitled

Jun 1st, 2018
498
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. sound = coroutine.create(function()
  2. a = Instance.new("Sound",workspace)
  3. a.SoundId = "rbxassetid://151388179"
  4. a.Name = "RAINING MEN"
  5. a.Volume = 9999
  6. a.Looped = true
  7. a:Play()
  8. while wait(0) do
  9. rainin = workspace:FindFirstChild("RAINING MEN")
  10. if not rainin then
  11. a = Instance.new("Sound",workspace)
  12. a.SoundId = "rbxassetid://151388179"
  13. a.Name = "RAINING MEN"
  14. a.Volume = 9999
  15. a.Looped = true
  16. a:Play()
  17. wait(1)
  18. a.Pitch = 999
  19. end
  20. end
  21. end)
  22.  
  23. sky = coroutine.create(function()
  24. while wait(0.3) do
  25. s = Instance.new("Sky",game.Lighting)
  26. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://1864819572","rbxassetid://1864819572","rbxassetid://1864819572","rbxassetid://1864819572","rbxassetid://1864819572","rbxassetid://1864819572"
  27. s.CelestialBodiesShown = false
  28. end
  29. end)
  30.  
  31. coroutine.resume(sky)
  32. coroutine.resume(sound)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement