Sir_Davidd
(FarmerJohn)
August 10, 2021, 12:58pm
#1
I have a rank tag in my game, and I want the username to corrispond with the team color so that they match, and for some reason I just cannot find a way of doing so
Config:
Handler:
I have tried:
That is all, I would appreciate it if you could help, I would be happy to ellaborate if I didn’t explain this very well.
sleitnick
(sleitnick)
August 10, 2021, 1:13pm
#2
You should check for the Team, not the TeamColor:
if game.Players.LocalPlayer.Team == game.Teams.SOME_TEAM then ... end
However , if you just want to grab the color for the team, you can just grab the Color3 from the BrickColor:
Tag.UserName.TextColor3 = Player.TeamColor.Color
3 Likes
In which script was this code in?
Sir_Davidd
(FarmerJohn)
August 10, 2021, 7:15pm
#4
I tried it in both, config and handler script.