Well the title states that this is a request, but it's not, i'm having trouble finding a characters humanoid and damaging it on hit, This is my script, its in a serverscript in a tool, Whats wrong?
1 | local damage = script.Parent.Configuration.Damage.Value |
2 |
3 | script.Parent.Part.Touched:Connect( function () |
4 | local hum = script.Parent.Part:FindFirstChildOfClass( "Humanoid" ) |
5 | hum.Health = - damage |
6 | end ) |
Thanks for reading,
Well, first of all, (almost) every :Connect(function() returns a argument in "function(arg1)" (which of, arg1 is the argument it returns.). In this case, the :Connect(function(arg1) returns the part being hit. (:Connect(function(partBeingHit)). So, knowing that, you can do:
1 | local damage = script.Parent.Configuration.Damage.Value |
2 |
3 | script.Parent.Part.Touched:Connect( function (partBeingHit) |
4 | local hum = partBeingHit.Parent:FindFirstChild( "Humanoid" ) --most of the cases, the partBeingHit is a leg, a arm, the torso or the head. These limbs are inside a model (thats the player in some cases) and, inside the model, theres the Humanoid. Knowing that, the limbs' parent will be the player model, and, if theres a humanoid in it (some cases there arent), it will subtract the health. |
5 | if hum then |
6 | hum.Health = - damage |
7 | end |
8 | end ) |
But wait, theres a problem here: A error occours in line 6. Well, the maths here are wroten wrong.
1 | if hum then |
2 | hum.Health = - damage --wroten wrong |
3 | end |
the correct way would be:
1 | if hum then |
2 | hum.Health = hum.Health - damage --sets the hum.Health as hum.Health and subtracts it by the damage |
3 | end |
that works. heres the fixed version, without all the explaining:
1 | local damage = script.Parent.Configuration.Damage.Value |
2 |
3 | script.Parent.Part.Touched:Connect( function (partBeingHit) |
4 | local hum = partBeingHit.Parent:FindFirstChild( "Humanoid" ) |
5 | if hum then |
6 | hum.Health = hum.Health - damage |
7 | end |
8 | end ) |
Hope that helped.