How do I say the player’s name in a text label?

So, I want to make a text label. In it, I want it to say something to the likes of, “PlayerName, we’re sending backup soon. Stay safe.”
I know how to retrieve the player name, but how do I put it alongside normal text?

(whatever).Text = (“player.Name, we’re sending backup soon. Stay safe.”)

doesn’t work. Help!

1 Like

lua (whatever).Text = (player.Name..", we’re sending backup soon. Stay safe.”)

1 Like

What if I were to have text before the player.Name?

Simple. Just do the opposite:
("Random Text"..player.Name)

1 Like