Check to see if your zombie's humanoid is actually named humanoid. I had a zombie scripted like this too and it is perfectly fine. Just make sure that the zombie's humanoid is named humanoid, not zombie. A player's weapon is usually set to damage a humanoid named humanoid, not a humanoid named zombie.
Hope this helped!
Change the script to this.
01 | local larm = script.Parent:FindFirstChild( "Left Arm" ) |
02 | local rarm = script.Parent:FindFirstChild( "Right Arm" ) |
04 | function findNearestTorso(pos) |
05 | local list = game.Workspace:children() |
13 | if (temp 2. className = = "Model" ) and (temp 2 ~ = script.Parent) then |
14 | temp = temp 2 :findFirstChild( "Torso" ) |
15 | human = temp 2 :findFirstChild( "Humanoid" ) |
16 | if (temp ~ = nil ) and (human ~ = nil ) and (human.Health > 0 ) then |
17 | if (temp.Position - pos).magnitude < dist then |
19 | dist = (temp.Position - pos).magnitude |
28 | local human = hit.Parent:FindFirstChild( "Humanoid" ) |
30 | human.Health = human.Health - 12 |
34 | larm.Touched:connect(Hit) |
35 | rarm.Touched:connect(Hit) |
38 | local target = findNearestTorso(script.Parent.Torso.Position) |
40 | script.Parent.Humanoid:MoveTo(target.Position, target) |