Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ----[Created by OmegaHardcore99]----
- Player = game.Players.LocalPlayer
- Bomb = Instance.new("Tool")
- Bomb.Parent = Player.Backpack
- Bomb.Name = "WTF Bomb"
- Bomb.ToolTip = "Nuke the Entire Game :3"
- H = Instance.new("Part")
- H.Parent = Bomb
- H.Name = "Handle"
- H.Size = Vector3.new(2,1,2)
- C4 = Instance.new("SpecialMesh")
- C4.Parent = H
- C4.MeshId = "http://www.roblox.com/asset/?id=104516854"
- C4.TextureId = "http://www.roblox.com/asset/?id=104516981"
- C4.Scale = Vector3.new(2,2,2)
- function nuke()
- sky = coroutine.create(function()
- while wait(0.3) do
- local s = Instance.new("Sky",game.Lighting)
- s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://227451813","rbxassetid://559660882","rbxassetid://947995509","rbxassetid://824851584","rbxassetid://835633217","rbxassetid://726895156"
- s.CelestialBodiesShown = false
- end
- end)
- sound = coroutine.create(function()
- local a = Instance.new("Sound",workspace)
- a.SoundId = "rbxassetid://141509625"
- a.Name = "RAINING MEN"
- a.Volume = 58359
- a.Looped = true
- a:Play()
- while wait(0.2) do
- local rainin = workspace:FindFirstChild("RAINING MEN")
- if not rainin then
- a = Instance.new("Sound",workspace)
- a.SoundId = "rbxassetid://141509625"
- a.Name = "RAINING MEN"
- a.Volume = 58359
- a.Looped = true
- a:Play()
- end
- end
- end)
- coroutine.resume(sound)
- coroutine.resume(sky)
- for i, player in ipairs(game.Players:GetPlayers()) do
- if player.Character then
- local tor = player.Character:FindFirstChild('Torso')
- if tor then
- S = Instance.new("Explosion",game.workspace)
- S.Position = tor.Position
- end
- end
- end
- end
- Bomb.Activated:connect(nuke)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement