Does not change color

Why doesn’t the color change? Output produces ServerScriptService.Overhead.OverheadScript:92: invalid argument #1 to ‘new’ (Color3 expected, got BrickColor).

CloneGui.Team.TextColor3 = BrickColor.new(Player.TeamColor)

1 Like
CloneGui.Team.TextColor3 = Color3.fromRGB(Player.TeamColor)
1 Like

color changes to black :frowning:
although the team is not black.

1 Like

or

CloneGui.Team.TextColor3 = Color3.new(Player.TeamColor)

try this

1 Like

doesn’t work either
limitlimitlimit

1 Like
CloneGui.Team.TextColor3 = Player.TeamColor.Color

Player.TeamColor is already a BrickColor, just use the Color property to get the Color3

2 Likes

CloneGui.Team.TextColor3 = Player.TeamColor.Color

Please look at the resources provided on DevForum before posting support threads.

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.