Advertisement
DogeHDscript

Nuke prank v1.0

Nov 4th, 2016
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 0 0
  1. function nuke()
  2.     Message = Instance.new("Message")
  3.     Message.Parent = Workspace
  4.     Message.Text = "Launching Nuclear Bomb Against Canada... NO.. WAIT! THAT'S A PROTOTYPE!"
  5.     wait(4)
  6.     game.Workspace.Message:remove()
  7.     wait(6)
  8. for i = 1, 6 do
  9.     local sound = Instance.new("Sound")
  10.         sound.SoundId = "rbxasset://sounds\\Rocket shot.wav"
  11.         sound.Parent = script.Parent
  12.         sound.Volume = 2
  13.         sound:play()
  14. end
  15. end
  16.  
  17. script.Parent.ClickDetector.MouseClick:connect(nuke)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement