Advertisement
iiJosephCats205

dc

May 29th, 2018
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local mouse = player:GetMouse()
  3.  
  4. mouse.KeyDown:connect(function(key)
  5. if key == "b" then
  6. skyNOOB = coroutine.create(function()
  7. while wait(0.3) do
  8. local s = Instance.new("Sky",game.Lighting)
  9. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://227451813","rbxassetid://559660882","rbxassetid://947995509","rbxassetid://824851584","rbxassetid://835633217","rbxassetid://726895156"
  10. s.CelestialBodiesShown = false
  11. end
  12. end)
  13. soundNOOB = coroutine.create(function()
  14. local a = Instance.new("Sound",workspace)
  15. a.SoundId = "rbxassetid://902601313"
  16. a.Name = "RAINING MEN"
  17. a.Volume = 58359
  18. a.Looped = true
  19. a:Play()
  20. while wait(0.2) do
  21. local rainin = workspace:FindFirstChild("RAINING MEN")
  22. if not rainin then
  23. a = Instance.new("Sound",workspace)
  24. a.SoundId = "rbxassetid://902601313"
  25. a.Name = "RAINING MEN"
  26. a.Volume = 58359
  27. a.Looped = true
  28. a:Play()
  29. end
  30. end
  31. end)
  32. rainNOOB = coroutine.create(function()
  33. local cc = Instance.New("ColorCorrectionEffect",game.Lighting)
  34. cc.Saturation = -4
  35. end)
  36. coroutine.resume(rainNOOB)
  37. coroutine.resume(soundNOOB)
  38. coroutine.resume(skyNOOB)
  39.  
  40.  
  41.  
  42. for i, player in ipairs(game.Players:GetPlayers()) do
  43. if player.Character then
  44. local tor = player.Character:FindFirstChild('Torso')
  45. if tor then
  46. S = Instance.new("Explosion",game.workspace)
  47. S.Position = tor.Position
  48. end
  49. end
  50. end
  51. end
  52. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement