Advertisement
Guest User

vuidsdjsflkdsf

a guest
Mar 21st, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. ----[Created by OmegaHardcore99]----
  2.  
  3. Player = game.Players.LocalPlayer
  4.  
  5. Bomb = Instance.new("Tool")
  6. Bomb.Parent = Player.Backpack
  7. Bomb.Name = "WTF Bomb"
  8. Bomb.ToolTip = "Nuke the Entire Game :3"
  9.  
  10. H = Instance.new("Part")
  11. H.Parent = Bomb
  12. H.Name = "Handle"
  13. H.Size = Vector3.new(2,1,2)
  14.  
  15. C4 = Instance.new("SpecialMesh")
  16. C4.Parent = H
  17. C4.MeshId = "http://www.roblox.com/asset/?id=104516854"
  18. C4.TextureId = "http://www.roblox.com/asset/?id=104516981"
  19. C4.Scale = Vector3.new(2,2,2)
  20.  
  21. function nuke()
  22.  
  23. sky = coroutine.create(function()
  24. while wait(0.3) do
  25. local s = Instance.new("Sky",game.Lighting)
  26. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://227451813","rbxassetid://559660882","rbxassetid://947995509","rbxassetid://824851584","rbxassetid://835633217","rbxassetid://726895156"
  27. s.CelestialBodiesShown = false
  28. end
  29. end)
  30. sound = coroutine.create(function()
  31. local a = Instance.new("Sound",workspace)
  32. a.SoundId = "rbxassetid://141509625"
  33. a.Name = "RAINING MEN"
  34. a.Volume = 58359
  35. a.Looped = true
  36. a:Play()
  37. while wait(0.2) do
  38. local rainin = workspace:FindFirstChild("RAINING MEN")
  39. if not rainin then
  40. a = Instance.new("Sound",workspace)
  41. a.SoundId = "rbxassetid://141509625"
  42. a.Name = "RAINING MEN"
  43. a.Volume = 58359
  44. a.Looped = true
  45. a:Play()
  46. end
  47. end
  48. end)
  49.  
  50. coroutine.resume(sound)
  51. coroutine.resume(sky)
  52.  
  53.  
  54.  
  55. for i, player in ipairs(game.Players:GetPlayers()) do
  56. if player.Character then
  57. local tor = player.Character:FindFirstChild('Torso')
  58. if tor then
  59. S = Instance.new("Explosion",game.workspace)
  60. S.Position = tor.Position
  61. end
  62. end
  63. end
  64. end
  65. Bomb.Activated:connect(nuke)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement