Answered by
7 years ago Edited 7 years ago
An easy way to check if it was a character that touched is to see if Hit.Parent
contains a Humanoid
object. You can do this with the FindFirstChild
function. The logic behind this:
'Hit' --> the object that touched(potential limb/torso/rootpart)
'Hit.Parent' --> the object's parent, OR potential Character model
'Hit.Parent.Humanoid' --> nil, OR potential Character's Humanoid.
You can also shorten this whole code up using boolean logic. Set the 'Jump' Property directly correlating to the search of Hit.Parent
's potential Humanoid. Use the not
operator to indicate opposition.
1 | local zombo = script.Parent.Parent:WaitForChild( "Zombie" ) |
3 | zombo.Touched:Connect( function (Hit) |
4 | zombo.Jump = not Hit.Parent:FindFirstChild( "Humanoid" ) |
I also would consider setting up a debounce for this.