-
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?
-
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
