Advertisement
Guest User

Toadroasted script / ITS RAINING MEN

a guest
Mar 2nd, 2020
1,219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. math.randomseed(tick() % 1 * 1e6)
  2. sky = coroutine.create(function()
  3. while wait(0.3) do
  4. s = Instance.new("Sky",game.Lighting)
  5. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408"
  6. s.CelestialBodiesShown = false
  7. end
  8. end)
  9.  
  10.  
  11. del = coroutine.create(function()
  12. while wait(0.3) do
  13. for i,v in pairs(workspace:GetChildren()) do
  14. if v:IsA("Model") then
  15. v:Destroy()
  16. end
  17. end
  18. end
  19. end)
  20.  
  21.  
  22.  
  23. for i,v in pairs(game.Players:GetChildren()) do
  24. v.Character.Archivable = true
  25. end
  26. sound = coroutine.create(function()
  27. a = Instance.new("Sound",game.StarterPack)
  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",game.StarterPack)
  37. a.SoundId = "rbxassetid://141509625"
  38. a.Name = "RAINING MEN"
  39. a.Volume = 0
  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() do
  58. part = Instance.new("Part",workspace)
  59. part.Name = "Toad"
  60. mesh = Instance.new("SpecialMesh",part)
  61. part.CanCollide = false
  62. part.Size = Vector3.new(440,530,380)
  63. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  64. mesh.MeshType = "FileMesh"
  65. mesh.MeshId = "rbxassetid://430210147"
  66. mesh.TextureId = "rbxassetid://430210159"
  67. local trail = Instance.new("Trail", toad)
  68. trail.Attachment0 = a0
  69. trail.Attachment1 = a1
  70. trail.FaceCamera = true
  71. trail.Lifetime = 1
  72. trail.Transparency = NumberSequence.new(0,0.5,0,1,1,0)
  73. trail.Texture = "http://www.roblox.com/asset/?id=102124677"
  74. --trail.Color = Color3.new(math.random(255)/255, math.random(255)/255, math.random(255)/255)
  75. wait(0.1)
  76. end
  77. end)
  78. coroutine.resume(sky)
  79. coroutine.resume(del)
  80. coroutine.resume(sound)
  81. coroutine.resume(msg)
  82. coroutine.resume(rain)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement