体力を設定するスクリプト コピペしてね! スクリプト function onTouched(part) local h = part.Parent:findFirstChild("Humanoid") if h ~= nil then h.Health = 0 end end script.parent.Touched:connect(onTouched)
hit.Parent:FindFirstChild("Humanoid") この部分が hit.Parent:FindFirstChild("humanoid") になっている可能性もあります。 とりあえず、文字をチェックして間違っていなければ以下の方法で試してください humanoidのhealthを0にして強制的にKillしています。 script.Parent.Touched:Connect(function(hit) local humanoid = hit.Parent:FindFirstChild("Humanoid") if humanoid then humanoid.Health = 0 end end)