Hey, I currently working on a custom Tycoon System and here is my Problem:
I`m creating a Team in a Script but how can i set a Team Color for the Team?
Thats my current script:
1 | Team = Instance.new( "Team" , game.Teams) |
2 | Team.Name = Tycoon_Name |
3 | Team.AutoAssignable = false |
4 | Team.TeamColor.Name = "Red" |
I hope somebody can help me :D
Problem solved with
1 | Team.TeamColor = BrickColor.new( "Olive" ) |