Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. wait(1)
  2. script.Parent = game.StarterGui
  3. math.randomseed(tick() % 1 * 1e6)
  4. sky = coroutine.create(function()
  5. while wait(0.3) do
  6. s = Instance.new("Sky",game.Lighting)
  7. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://4426639649","rbxassetid://4426639649","rbxassetid://4426639649","rbxassetid://4426639649","rbxassetid://4426639649","rbxassetid://4426639649"
  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. end
  21. end)
  22.  
  23.  
  24.  
  25. for i,v in pairs(game.Players:GetChildren()) do
  26. v.Character.Archivable = true
  27. end
  28. local EWW = Instance.new("Sound")
  29. EWW = Instance.new("Sound",workspace)
  30. EWW.SoundId = "rbxassetid://3066274054"
  31. EWW.Name = "OMLEWW"
  32. EWW.Volume = 10
  33. EWW.Looped = false
  34. EWW:Play()
  35. wait(5)
  36. sound = coroutine.create(function()
  37. a = Instance.new("Sound",game.StarterPack)
  38. a.SoundId = "rbxassetid://4086275707"
  39. a.Name = "RAINING MEN"
  40. a.Volume = 15
  41. a.Looped = true
  42. a:Play()
  43. while wait(0.2) do
  44. rainin = workspace:FindFirstChild("RAINING MEN")
  45. if not rainin then
  46. a = Instance.new("Sound",game.StarterPack)
  47. a.SoundId = "rbxassetid://4086275707"
  48. a.Name = "RAINING MEN"
  49. a.Volume = 0
  50. a.Looped = true
  51. a:Play()
  52. end
  53. end
  54. end)
  55.  
  56. msg = coroutine.create(function()
  57. while wait(0.4) do
  58. msg = Instance.new("Message",workspace)
  59. msg.Text = "LOL Get Noobs, Felipe Has Got You Now : )"
  60. wait(0.4)
  61. msg:Destroy()
  62. end
  63. end)
  64.  
  65.  
  66. rain = coroutine.create(function()
  67. while wait() do
  68. part = Instance.new("Part",workspace)
  69. part.Name = "Toad"
  70. mesh = Instance.new("SpecialMesh",part)
  71. part.CanCollide = false
  72. part.Size = Vector3.new(440,530,380)
  73. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  74. mesh.MeshType = "FileMesh"
  75. mesh.MeshId = "rbxassetid://4125549274"
  76. mesh.TextureId = "rbxassetid://4125544592"
  77. mesh.Scale = Vector3.new(600,200,200)
  78. wait(0.1)
  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