How would i enter a blank/empty line in a text label?

I’ve been trying to enter a blank line in a TextLabel, but i can’t seem to find a way to do it.
The best i was able to do was just add a lot of blank spaces and then a dot, but it doesn’t do what i need it to specifically.

What i’ve achieved so far:

image

What i’m trying to achieve:

image

Either do it in another text editor;

…or use the <br/> tag, but make sure RichText is enabled for that TextBox.

2 Likes

/n

To add a single line you can do myTextLabel.Text = “Line 1\n\nLine 2”
Which produces
Line 1

Line 2

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.