Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Help me with my NPC?

Asked by 9 years ago

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

01local Player = game.Players:GetPlayerFromCharacter(hit.Parent)
02humanoid = workspace.DroolingZombie
03Darkgreen = game.teams.Undead
04if Player.TeamColor ~= Darkgreen then
05    tagHumanoid(humanoid)
06    humanoid:TakeDamage(0)
07    wait(1)
08    untagHumanoid(humanoid)
09end
10function 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
15end
View all 23 lines...

I'm new to coding, so this is my first try. Help?

0
On line 04 Put `Darkgreen.TeamColor` woodengop 1134 — 9y
0
On line 3, Make it 'game.Teams.Undead' Shawnyg 4330 — 9y

Answer this question