Change color of player name in text label

  1. Hi, I have a text label that includes the local player’s name. Is there a way of changing the color of the player’s name in the text label?

  2. https://gyazo.com/82877009bb338ff94072cb87b86f6541 (i.e. change solely the player’s name to red, per se)

local str = "Hi "
local plr = game.Players.LocalPlayer.Name
local annex = ", want to Rebirth?"

local combinedString = str .. plr .. annex

script.Parent.Text = combinedString
1 Like

Here you go!

Turn on rich text in the textlabel and follow the api page! :slight_smile:

1 Like

Thank you so much!

(char limit)

1 Like