Im making a weapon and I need to figure out how you would find if the item shot has a Humanoid any explanations/Examples???
Put this script in the tool not the handle
Damage = 50 script.Parent.Handle.Touched:connect(function(t) if t.Parent and t.Parent:FindFirstChild("Humanoid") then t.Parent:FindFirstChild("Humanoid").Health = t.Parent:FindFirstChild("Humanoid").Health - Damage end end)
There are no animations, though.