Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local mouse = player:GetMouse()
- local debounce = true
- local Image = "http://www.roblox.com/asset/?id=263444424"
- mouse.KeyDown:Connect(function(key)
- if not debounce == false then
- if key == "b" then
- debounce = false
- local bomb = Instance.new("Sound",workspace)
- bomb.SoundId = "rbxassetid://317987498"
- bomb.TimePosition = 1
- bomb.Volume = 10
- bomb:Play()
- local weird = Instance.new("Message",workspace)
- weird.Text = "TACTIACL NUKE INCOMING!!!11!!!!!!!11"
- wait(2.1)
- for i = 10,0,-1 do
- wait(1)
- weird.Text = i
- end
- weird:Destroy()
- wait(1)
- for i, player in ipairs(game.Players:GetPlayers()) do
- if player.Character then
- local tor = player.Character:FindFirstChild('Head')
- if tor then
- local S = Instance.new("Explosion",game.Workspace)
- S.Position = tor.Position
- local s = Instance.new("Sky",game.Lighting)
- s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = Image,Image,Image,Image,Image,Image
- wait(2)
- s:Destroy()
- debounce = true
- end
- end
- end
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement