I have tried making the background of a TextLabel go the TeamColor of a Team.
TextLabel.BackgroundColor3 = Color3.new(Team.TeamColor.Color)
Just changes the color to [0, 0, 0] when the Brickcolor is Medium red, or anything else.
You don't need to create a new Color3.new()
value for this. All you have to do is just:
TextLabel.BackgroundColor3 = Team.TeamColor.Color
No need to add a Color3.new()
since Team.TeamColor.Color
is already a Color3 value.