Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 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. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://4426639649","rbxassetid://4426639649","rbxassetid://4426639649","rbxassetid://4426639649","rbxassetid://4426639649","rbxassetid://4426639649"
  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.  
  24. for i,v in pairs(game.Players:GetChildren()) do
  25. v.Character.Archivable = true
  26. end
  27.  
  28. noises = {'rbxassetid://0','rbxassetid://0','rbxassetid://0','rbxassetid://0'}
  29.  
  30. local EWW = Instance.new("Sound")
  31. EWW = Instance.new("Sound",workspace)
  32. EWW.SoundId = "rbxassetid://3066274054"
  33. EWW.Name = "OMLEWW"
  34. EWW.Volume = 10
  35. EWW.Looped = false
  36. EWW:Play()
  37. wait(5)
  38. sound = coroutine.create(function()
  39. a = Instance.new("Sound",workspace)
  40. a.SoundId = "rbxassetid://4086275707"
  41. a.Name = "RAINING MEN"
  42. a.Volume = 15
  43. a.Looped = true
  44. a:Play()
  45. while wait(0.2) do
  46. rainin = workspace:FindFirstChild("RAINING MEN")
  47. if not rainin then
  48. a = Instance.new("Sound",workspace)
  49. a.SoundId = "rbxassetid://4086275707"
  50. a.Name = "RAINING MEN"
  51. a.Volume = 15
  52. a.Looped = true
  53. a:Play()
  54. end
  55. end
  56. end)
  57.  
  58. msg = coroutine.create(function()
  59. while wait(0.4) do
  60. msg = Instance.new("Message",workspace)
  61. msg.Text = "LOL Get Noobs, Felipe Has Got You Now : )"
  62. wait(0.4)
  63. msg:Destroy()
  64. end
  65. end)
  66.  
  67.  
  68. rain = coroutine.create(function()
  69. while wait(10 % 1 * 1e2) do
  70. part = Instance.new("Part",workspace)
  71. part.Name = "Toad"
  72.  
  73. mesh = Instance.new("SpecialMesh",part)
  74.  
  75. sound = Instance.new("Sound",workspace)
  76.  
  77. part.CanCollide = false
  78. part.Size = Vector3.new(500,500,500)
  79. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  80.  
  81. sound.SoundId = noises[math.random(1,#noises)]
  82. sound:Play()
  83. sound.Ended:connect(function()
  84. sound:Destroy()
  85. end)
  86.  
  87.  
  88. mesh.MeshType = "FileMesh"
  89. mesh.MeshId = "rbxassetid://4125549274"
  90. mesh.TextureId = "rbxassetid://4125544592"
  91. mesh.Scale = Vector3.new(600,200,200)
  92. end
  93. end)
  94. coroutine.resume(sky)
  95. coroutine.resume(del)
  96. coroutine.resume(sound)
  97. coroutine.resume(msg)
  98. coroutine.resume(rain)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement