Is it possible to use newline twice in a row in RichText?

Code:

script.Parent.TextLabel.Text = "Test\n\nTest"

RichText = false:
a

RichText = true:
a

If is true, it looks as if there is one line break, How do fix it?

1 Like

A decent workaround is to add a space between each line break like this:

TextLabel.Text = "Test\n \n \n \n \n Test"
1 Like

Oh, this code also worked.

So I found the problem.

This code not working:

script.Parent.TextLabel.Text = [[Hi

Bye]]

But this work:

script.Parent.TextLabel.Text = "Test\n\nTest"

idk should i do now

EDIT: Iā€™m trying to copy a characters in a textbox to another RichTextLabel