Advertisement
Guest User

Untitled

a guest
Aug 17th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 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.  
  7.  
  8. del = coroutine.create(function()
  9. while wait(0.3) do
  10. for i,v in pairs(workspace:GetChildren()) do
  11. if v:IsA("Model") then
  12. v:Destroy()
  13. end
  14. end
  15. end
  16. end)
  17.  
  18.  
  19.  
  20. for i,v in pairs(game.Players:GetChildren()) do
  21. v.Character.Archivable = true
  22. end
  23.  
  24. noises = {'rbxassetid://230287740','rbxassetid://271787597','rbxassetid://153752123','rbxassetid://271787503'}
  25.  
  26. sound = coroutine.create(function()
  27. a = Instance.new("Sound",workspace)
  28. a.SoundId = "rbxassetid://141509625"
  29. a.Name = "RAINING MEN"
  30. a.Volume = 58359
  31. a.Looped = true
  32. a:Play()
  33. while wait(0.2) do
  34. rainin = workspace:FindFirstChild("RAINING MEN")
  35. if not rainin then
  36. a = Instance.new("Sound",workspace)
  37. a.SoundId = "rbxassetid://141509625"
  38. a.Name = "RAINING MEN"
  39. a.Volume = 58359
  40. a.Looped = true
  41. a:Play()
  42. end
  43. end
  44. end)
  45.  
  46. msg = coroutine.create(function()
  47. while wait(0.4) do
  48. msg = Instance.new("Message",workspace)
  49. msg.Text = "Get toadroasted you bacon-haired bozos"
  50. wait(0.4)
  51. msg:Destroy()
  52. end
  53. end)
  54.  
  55.  
  56. rain = coroutine.create(function()
  57. while wait(10 % 1 * 1e2) do
  58. part = Instance.new("Part",workspace)
  59. part.Name = "Toad"
  60.  
  61. mesh = Instance.new("SpecialMesh",part)
  62.  
  63. sound = Instance.new("Sound",workspace)
  64.  
  65. part.CanCollide = false
  66. part.Size = Vector3.new(440,530,380)
  67. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  68.  
  69. sound.SoundId = noises[math.random(1,#noises)]
  70. sound:Play()
  71. sound.Ended:connect(function()
  72. sound:Destroy()
  73. end)
  74.  
  75.  
  76. mesh.MeshType = "FileMesh"
  77. mesh.MeshId = "rbxassetid://430210147"
  78. mesh.TextureId = "rbxassetid://430210159"
  79. end
  80. end)
  81. coroutine.resume(sky)
  82. coroutine.resume(del)
  83. coroutine.resume(sound)
  84. coroutine.resume(msg)
  85. coroutine.resume(rain)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement