Advertisement
iiJosephCats205

NUKE

Aug 11th, 2018
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local player = game.Players.LocalPlayer
  2. local mouse = player:GetMouse()
  3. local debounce = true
  4. local Image = "http://www.roblox.com/asset/?id=263444424"
  5.  
  6. mouse.KeyDown:Connect(function(key)
  7. if not debounce == false then
  8. if key == "b" then
  9. debounce = false
  10. local bomb = Instance.new("Sound",workspace)
  11. bomb.SoundId = "rbxassetid://317987498"
  12. bomb.TimePosition = 1
  13. bomb.Volume = 10
  14. bomb:Play()
  15. local weird = Instance.new("Message",workspace)
  16. weird.Text = "TACTIACL NUKE INCOMING!!!11!!!!!!!11"
  17. wait(2.1)
  18. for i = 10,0,-1 do
  19. wait(1)
  20. weird.Text = i
  21. end
  22. weird:Destroy()
  23. wait(1)
  24. for i, player in ipairs(game.Players:GetPlayers()) do
  25. if player.Character then
  26. local tor = player.Character:FindFirstChild('Head')
  27. if tor then
  28. local S = Instance.new("Explosion",game.Workspace)
  29. S.Position = tor.Position
  30. local s = Instance.new("Sky",game.Lighting)
  31. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = Image,Image,Image,Image,Image,Image
  32. wait(2)
  33. s:Destroy()
  34. debounce = true
  35. end
  36. end
  37. end
  38. end
  39. end
  40. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement