Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Changing Team Color. How can I change the Team Color in a Script? [SOLVED]

Asked by 4 years ago
Edited 4 years ago

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:

Team = Instance.new("Team", game.Teams)
Team.Name = Tycoon_Name
Team.AutoAssignable = false
Team.TeamColor.Name = "Red"

I hope somebody can help me :D

1 answer

Log in to vote
1
Answered by 4 years ago

Problem solved with

Team.TeamColor = BrickColor.new("Olive")
Ad

Answer this question