of     1   

Zelphurx
#144435189Sunday, August 24, 2014 10:01 PM GMT

So I have this now, and it works: game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) wait(2) if character.Name=="Zelphurx" then Workspace.Zelphurx.Head.face.Texture = "rbxassetid://49586548" end end) end) is there a way so that an entire team gets it?
ForceSky
#144435321Sunday, August 24, 2014 10:03 PM GMT

game.Players.PlayerAdded:connect(function(plr) plr.CharacterAdded:connect(function(char) wait(2) if plr.TeamColor == BRICKCOLOR then char.Head.face.Texture = "rbxassetid://49586548" end end) end)
Zelphurx
#144435580Sunday, August 24, 2014 10:07 PM GMT

Thanks.

    of     1