Advertisement
Robert312_9801

A script that kills you when you press the button.

Aug 24th, 2022
1,530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. -- The script does not work in all games.
  2. -- Please wait second version.
  3.  
  4. mouse = game.Players.LocalPlayer:GetMouse()
  5.  
  6. local button = "p" -- You can write another symbol
  7.  
  8. mouse.KeyDown:Connect(function(key)
  9.     if key == button then
  10.         game.Players.LocalPlayer.Character.Humanoid.Health = 0
  11.     end
  12. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement