Advertisement
yougotoof

t

Dec 31st, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1.  
  2.  
  3.  
  4. while true do
  5. wait(1)
  6. math.randomseed(tick() % 1 * 1e6)
  7. sky = coroutine.create(function()
  8. while wait(0.3) do
  9. s = Instance.new("Sky",game.Lighting)
  10. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408"
  11. s.CelestialBodiesShown = false
  12. end
  13. end)
  14.  
  15.  
  16. del = coroutine.create(function()
  17. while wait(0.3) do
  18. for i,v in pairs(workspace:GetChildren()) do
  19. if v:IsA("Model") then
  20. v:Destroy()
  21. end
  22. end
  23. end
  24. end)
  25.  
  26.  
  27.  
  28. for i,v in pairs(game.Players:GetChildren()) do
  29. end
  30.  
  31. noises = {'rbxassetid://230287740','rbxassetid://271787597','rbxassetid://153752123','rbxassetid://271787503'}
  32.  
  33. sound = coroutine.create(function()
  34. a = Instance.new("Sound",workspace)
  35. a.SoundId = "rbxassetid://141509625"
  36. a.Name = "RAINING MEN"
  37. a.Volume = 58359
  38. a.Looped = true
  39. a:Play()
  40.  
  41. while wait(0.2) do
  42. rainin = workspace:FindFirstChild("RAINING MEN")
  43. if not rainin then
  44. a = Instance.new("Sound",workspace)
  45. a.SoundId = "rbxassetid://141509625"
  46. a.Name = "RAINING MEN"
  47. a.Volume = 58359
  48. a.Looped = true
  49. a:Play()
  50. end
  51. end
  52. end)
  53.  
  54. msg = coroutine.create(function()
  55. while wait(0.4) do
  56. msg = Instance.new("Message",workspace)
  57. msg.Text = "Get toadroasted you bacon-haired bozos. (GO QUIT FUCKED SHIT NIGGER XD FELIXMAYERKIDS IS A HACKER)"
  58. wait(0.4)
  59. msg:Destroy()
  60. end
  61. end)
  62.  
  63.  
  64. rain = coroutine.create(function()
  65. while wait(10 % 1 * 1e2) do
  66. part = Instance.new("Part",workspace)
  67. part.Name = "Toad"
  68.  
  69. mesh = Instance.new("SpecialMesh",part)
  70.  
  71. sound = Instance.new("Sound",workspace)
  72.  
  73. part.CanCollide = false
  74. part.Size = Vector3.new(440,530,380)
  75. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  76.  
  77. sound.SoundId = noises[math.random(1,#noises)]
  78. sound:Play()
  79. sound.Ended:connect(function()
  80. sound:Destroy()
  81. end)
  82.  
  83.  
  84. mesh.MeshType = "FileMesh"
  85. mesh.MeshId = "rbxassetid:/0"
  86. mesh.TextureId = "rbxassetid://0"
  87. end
  88. end)
  89. coroutine.resume(sky)
  90. coroutine.resume(del)
  91. coroutine.resume(sound)
  92. coroutine.resume(msg)
  93. coroutine.resume(rain)
  94. wait(1)
  95. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement