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)
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)
CloneGui.Team.TextColor3 = Color3.fromRGB(Player.TeamColor)
color changes to black ![]()
although the team is not black.
or
CloneGui.Team.TextColor3 = Color3.new(Player.TeamColor)
try this
doesn’t work either
limitlimitlimit
CloneGui.Team.TextColor3 = Player.TeamColor.Color
Player.TeamColor is already a BrickColor, just use the Color property to get the Color3
CloneGui.Team.TextColor3 = Player.TeamColor.Color
Please look at the resources provided on DevForum before posting support threads.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.