This spawns everyone in the group to the right team but me? Why?
function Enter(newPlayer) if newPlayer:IsInGroup(2608221) then newPlayer.TeamColor = script.Parent.TeamColor end game.Players.ChildAdded:connect(Enter)
Question: Where is the script placed?
Missed Things:
'end' required at the end of if function 'if newPlayer:IsInGroup(2608221) then'
Optional:
Consider changing 'ChildAdded' for 'PlayerAdded'
Script
I have not tested this script, give it a go, reply if it works!
function Enter(newPlayer) wait() if newPlayer:IsInGroup(2608221) then newPlayer.TeamColor = script.Parent.TeamColor end end game.Players.PlayerAdded:connect(Enter)