Advertisement
Zebula_The_Scripter

Untitled

May 28th, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 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.  
  24. for i,v in pairs(game.Players:GetChildren()) do
  25. end
  26.  
  27. sound = coroutine.create(function()
  28. a = Instance.new("Sound",workspace)
  29. a.SoundId = "rbxassetid://1523939067"
  30. a.Name = "Funny Noise"
  31. a.Volume = 58359
  32. a.Looped = true
  33. a:Play()
  34.  
  35. msg = coroutine.create(function()
  36. while wait(0.4) do
  37. msg = Instance.new("Message",workspace)
  38. msg.Text = "Get toadroasted you bacon-haired bozos. (GO QUIT SUB TO VENGEFULPROGRAM OR ELSE YOU GET HACKED!! SKIDS)"
  39. wait(0.4)
  40. msg:Destroy()
  41. end
  42. end)
  43.  
  44.  
  45. rain = coroutine.create(function()
  46. while wait(10 % 1 * 1e2) do
  47. part = Instance.new("Part",workspace)
  48. part.Name = "Toad"
  49.  
  50. mesh = Instance.new("SpecialMesh",part)
  51.  
  52. sound = Instance.new("Sound",workspace)
  53.  
  54. part.CanCollide = false
  55. part.Size = Vector3.new(440,530,380)
  56. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  57.  
  58. sound.SoundId = noises[math.random(1,#noises)]
  59. sound:Play()
  60. sound.Ended:connect(function()
  61. sound:Destroy()
  62. end)
  63.  
  64.  
  65. mesh.MeshType = "FileMesh"
  66. mesh.MeshId = "rbxassetid://430210147"
  67. mesh.TextureId = "rbxassetid://430210159"
  68. end
  69. end)
  70. coroutine.resume(sky)
  71. coroutine.resume(del)
  72. coroutine.resume(sound)
  73. coroutine.resume(msg)
  74. coroutine.resume(rain)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement