the a player has it and touches something it wont work at all but when he/she drops it and trys to pick it up it works idk whats wrong
1 | script.Parent.Activated:Connect( function () |
2 | script.Parent.Handle.Script.Disabled = false |
3 | end ) |
the script
1 | function onTouch(part) |
2 | local humanoid = part.Parent:FindFirstChild( "Humanoid" ) |
3 | if (humanoid ~ = nil ) then -- if a humanoid exists, then |
4 | humanoid.Health = 0 -- damage the humanoid |
5 | end |
6 | end |
7 |
8 | script.Parent.Touched:connect(onTouch) |
You can then use a remote event to fire to the server the hit.Parent and on the server side set it's Humanoid Health to 0
01 | local tool = script.Parent |
02 | local player = game.Players.LocalPlayer |
03 |
04 | local function onTouch(hit) |
05 | local hum = hit.Parent:FindFirstChild( "Humanoid" ) |
06 | if hum then |
07 | --Fire a Remote Event to kill hit.Parent [i.e. onKillPlayerEvent:FireServer(hit.Parent)] |
08 | end |
09 | end |
10 |
11 |
12 | tool.Blade.Touched:Connect( function (hit) |
13 | onTouch(hit) |
14 | end ) |