How to make a tool that kills a player while equiping that

Good evening! I would like to ask you how can I make a tool that, when equipped, kills the player equipped with it.

Destruction 100
Lol pretty simple I believe

--Local Script
local Tool = script.Parent
local Player = game.Players.LocalPlayer
local Character = Player.Character or Player.CharacterAdded:Wait()

Tool.Equipped:Connect(function()
    Character.Humanoid:TakeDamage(100) --Or change it to Humanoid.Health = 0
end)
1 Like

Thats really works, thanks very much

1 Like