i want to make the textcolor3 of a textlabel the same color as the players team color.
game.ServerStorage.overhead:Clone().Parent = head head.overhead.title.Text = team.Name color = team.TeamColor head.overhead.title.TextColor3 = Color3.new(color)
this does not return an error, however it just sets the color of the textlabel to black. (0,0,0)
Since team color is a brick color value, use this to convert brick color to color3:
--brickcolor.Color--
game.ServerStorage.overhead:Clone().Parent = head head.overhead.title.Text = team.Name color = team.TeamColor -- if color is a brick color head.overhead.title.TextColor3 = color.Color