Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

the tools dose with work with player work in work space how do i fix?

Asked by 6 years ago
Edited 6 years ago

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

1script.Parent.Activated:Connect(function()
2script.Parent.Handle.Script.Disabled = false
3end)

the script

1function 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
6end
7 
8script.Parent.Touched:connect(onTouch)
0
What would you like to happen?? Player A holds the tool and if ANOTHER player touches it they get the damage? GoodCallMrOlsen 70 — 6y
0
yeah helleric -3 — 6y
0
what if u just make it undroppable TheluaBanana 946 — 6y

1 answer

Log in to vote
1
Answered by 6 years ago

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

01local tool = script.Parent
02local player = game.Players.LocalPlayer
03 
04local 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
09end
10 
11 
12tool.Blade.Touched:Connect(function(hit)
13        onTouch(hit)
14end)
0
it works when the player drops it and trys to pick it up it kills the player helleric -3 — 6y
0
never mind i fixed it ty helleric -3 — 6y
Ad

Answer this question