RiasGremory0100

Toads

Apr 17th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. script.Parent = game.StarterGui
  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. 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. coroutine.resume(sky)
  47. coroutine.resume(del)
  48. coroutine.resume(sound)
  49. coroutine.resume(msg)
  50. coroutine.resume(rain)
Add Comment
Please, Sign In to add comment