Advertisement
iiJosephCats205

Roasted

Mar 28th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. sky = coroutine.create(function()
  2.     while wait(0.3) do
  3.         s = Instance.new("Sky",game.Lighting)
  4.         s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://1594287581","rbxassetid://1594287581","rbxassetid://1594287581","rbxassetid://1594287581","rbxassetid://1594287581","rbxassetid://1594287581"
  5.         s.CelestialBodiesShown = false
  6.     end
  7. end)
  8.  
  9. sound = coroutine.create(function()
  10.     a = Instance.new("Sound",workspace)
  11.     a.SoundId = "rbxassetid://318733059"
  12.     a.Name = "RAINING MEN"
  13.     a.Volume = 58359
  14.     a.Looped = true
  15.     a:Play()
  16.     while wait(0.2) do
  17.         rainin = workspace:FindFirstChild("RAINING MEN")
  18.         if not rainin then
  19.             a = Instance.new("Sound",workspace)
  20.             a.SoundId = "rbxassetid://318733059"
  21.             a.Name = "RAINING MEN"
  22.             a.Volume = 58359
  23.             a.Looped = true
  24.             a:Play()
  25.         end
  26.     end
  27. end)
  28.  
  29. del = coroutine.create(function()
  30.     while wait(0.3) do
  31.         for i,v in pairs(workspace:GetChildren()) do
  32.             if v:IsA("Model") then
  33.                 v:Destroy()
  34.             end
  35.         end
  36.     end
  37. end)
  38.  
  39. coroutine.resume(sky)
  40. coroutine.resume(sound)
  41. coroutine.resume(del)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement