Code:
script.Parent.TextLabel.Text = "Test\n\nTest"
RichText = false:
RichText = true:
If is true, it looks as if there is one line break, How do fix it?
Code:
script.Parent.TextLabel.Text = "Test\n\nTest"
RichText = false:
RichText = true:
If is true, it looks as if there is one line break, How do fix it?
A decent workaround is to add a space between each line break like this:
TextLabel.Text = "Test\n \n \n \n \n Test"
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