|
| 25 Feb 2013 11:56 AM |
| So there are 3 teams: White, Bright Red, and black. I need a script that the gui that I will make will only show for the Black team. |
|
|
| Report Abuse |
|
|
| 25 Feb 2013 12:09 PM |
gui = game.Lighting.GUINAME:clone()
game.Players.PlayerAdded:connect(function(newguy) wait(1) if newguy.TeamColor == ("Black") then gui.parent = newguy.PlayerGui end end)
game.Players.PlayerAdded:connect(newguy)
Put the gui in lighting, and change the GUINAME to its name.
This isn't guarenteed to work, I put it together quickly. |
|
|
| Report Abuse |
|
| |