Rich Text on DisplayName

Can I use Rich Text in the DisplayName of the Humanoid? I would like to make a Name Tags system and I saw that the game “Hood Customs” uses colors in the Name. Do they use BillboardGui or is there a way to do this?

Example:
imagem

2 Likes

No you can’t. What you can do tho is create a billboard above the player and create a label inside of it above the players head, then enable Rich Text then this is how you’d do color

TextLabel.Text = "[<font color=\"rgb(255,125,0)\">Beta</font>] ySmurkles."
2 Likes
TextLabel.Text = string.format("<font size=\"100\">%s</font>", workspace.Character.Humanoid.DisplayName)
1 Like