wargod221
|
  |
| Joined: 09 May 2010 |
| Total Posts: 190 |
|
|
| 03 Feb 2014 09:06 PM |
| How would I apply a member cap/limit to a certain team. |
|
|
| Report Abuse |
|
dodleman
|
  |
| Joined: 22 Dec 2007 |
| Total Posts: 1118 |
|
|
| 03 Feb 2014 09:07 PM |
amnt = 0 maxamnt = whateverIntegerYouWantBaby:) team = game:GetService("Teams").TeamNameHere
for i,v in pairs(game.Players:GetPlayers()) do if amnt ~= maxamnt then v.TeamColor = team.TeamColor amnt = amnt + 1 wait() end end
Adjust that. |
|
|
| Report Abuse |
|
wargod221
|
  |
| Joined: 09 May 2010 |
| Total Posts: 190 |
|
| |