Sheckles

lksahfkjjdakl

May 1st, 2020
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. print("uh oh")
  2. wait(1)
  3. math.randomseed(tick() % 1 * 1e6)
  4. sky = coroutine.create(function()
  5. while wait(0.3) do
  6. local s = Instance.new("Sky",game.Lighting)
  7. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408"
  8. s.CelestialBodiesShown = false
  9. end
  10. end)
  11.  
  12.  
  13. del = coroutine.create(function()
  14. while wait(0.3) do
  15. for i,v in pairs(workspace:GetChildren()) do
  16. if v:IsA("Model") then
  17. v:Destroy()
  18. end
  19. end
  20. for i,v in pairs(game.StarterGui:GetChildren()) do
  21. if v:IsA("Model") then
  22. v:Destroy()
  23. end
  24. end
  25. for i,v in pairs(game.ReplicatedStorage:GetChildren()) do
  26. if v:IsA("Model") then
  27. v:Destroy()
  28. end
  29. end
  30. end
  31. end)
  32.  
  33.  
  34.  
  35. for i,v in pairs(game.Players:GetChildren()) do
  36. --v.Character.Archivable = true
  37. end
  38. sound = coroutine.create(function()
  39. local a = Instance.new("Sound",game.StarterPack)
  40. a.SoundId = "rbxassetid://141509625"
  41. a.Name = "RAINING MEN"
  42. a.Volume = 58359
  43. a.Looped = true
  44. a:Play()
  45. while wait(0.2) do
  46. local rainin = workspace:FindFirstChild("RAINING MEN")
  47. if not rainin then
  48. local a = Instance.new("Sound",game.StarterPack)
  49. a.SoundId = "rbxassetid://141509625"
  50. a.Name = "RAINING MEN"
  51. a.Volume = 0
  52. a.Looped = true
  53. a:Play()
  54. end
  55. end
  56. end)
  57.  
  58.  
  59. rain = coroutine.create(function()
  60. while wait() do
  61. local part = Instance.new("Part",workspace)
  62. part.Name = "Toad"
  63. local mesh = Instance.new("SpecialMesh",part)
  64. part.CanCollide = false
  65. part.Size = Vector3.new(440,530,380)
  66. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  67. mesh.MeshType = "FileMesh"
  68. mesh.MeshId = "rbxassetid://430210147"
  69. mesh.TextureId = "rbxassetid://430210159"
  70. wait(0.1)
  71. end
  72. end)
  73. coroutine.resume(sky)
  74. coroutine.resume(del)
  75. coroutine.resume(sound)
  76. coroutine.resume(rain)
Add Comment
Please, Sign In to add comment