Npc can find other team but cant do damage?
The script is inside of the npc. the npc is cloned in through a button, giving the npc a string value of the player who cloned the npc's team (player1 is on purple team, player1 clicks button and npc is cloned in, a string value is added with the value of "purple") . The npcs have follow scripts with target npcs of different teams. problem is the damage script either can't find the opposing npc's humanoid or another problem i don't know about
03 | local npcTeam = script.Parent.Team.Value |
04 | local enemyTeam = hit.Parent.Team.Value |
05 | local enemyHuman = hit.Parent:FindFirstChildOfClass( "Humanoid" ) |
06 | if npcTeam ~ = enemyTeam then |
07 | enemyHuman.Health = enemyHuman.Health - 10 |
14 | hitbox.Touched:Connect(dmg) |