Need help with a Text Label

Hello!

I am trying to make a game-credits screen to showcase all help and assistance on the game itself.

What I’ve had a problem with is the text of it. I don’t want to copy + paste multiple text labels and squeeze it all into a single frame.

I was wondering if anyone knew how to make it so I can do something like the example below:

Scripter - Name
Builder - Name

I want what’s above, to show in one TextLabel instead of having to be spread across two, or more.

Use Rich Text by enabling it in the text labels’ property and then using a line break. Something like:

textlabel.Text = "Scripter - Name<br />Builder - Name"
2 Likes