Help me with my NPC?
I need a script that allows NPC to attack players on one team, but deal no damage to players on another team. Heres what I tried: (combination of sword script and teamkilling script
01 | local Player = game.Players:GetPlayerFromCharacter(hit.Parent) |
02 | humanoid = workspace.DroolingZombie |
03 | Darkgreen = game.teams.Undead |
04 | if Player.TeamColor ~ = Darkgreen then |
06 | humanoid:TakeDamage( 0 ) |
08 | untagHumanoid(humanoid) |
10 | function tagHumanoid(humanoid, player) |
11 | local creator_tag = Instance.new( "ObjectValue" ) |
12 | creator_tag.Value = player |
13 | creator_tag.Name = "creator" |
14 | creator_tag.Parent = humanoid |
16 | function untagHumanoid(humanoid) |
17 | if humanoid ~ = nil then |
18 | local tag = humanoid:findFirstChild( "creator" ) |
I'm new to coding, so this is my first try. Help?