|
| 15 Jan 2012 12:25 AM |
function onEnter(newPlayer) if (newPlayer:IsInGroup(http://www.roblox.com/Groups/group.aspx?gid=463126)then newPlayer.TeamColor = game.Teams["Munitions Inc."].BrightGreen end I was expection after I put in for the Team color "Bright green" that anyone in my group Munitions Inc. (http://www.roblox.com/Groups/group.aspx?gid=463126) the script would allow them to be on the Bright green team, "Munitions Inc", but when I tried it it sill makes me be on the other team, "raiders |
|
|
| Report Abuse |
|
miz656
|
  |
| Joined: 19 Jul 2010 |
| Total Posts: 15336 |
|
|
| 15 Jan 2012 12:52 AM |
function onEnter(newPlayer) if newPlayer:IsInGroup(463126) then newPlayer.TeamColor = BrickColor.new("Bright green")--Check if capitalize ornot end end game.Players.PlayerAdded:connect(onEnter) |
|
|
| Report Abuse |
|