I just want to know if it is possible to make a text label display text in two lines
Example: Text: “Hey there, welcome”… I want “Hey there,” in the first line and “welcome” in the second line.
can we use something like “/n”
Taken from documentation on textlabel
“This property may contain newline characters, however, it is not possible to type newline characters within the Properties window. Similarly, this property may contain a tab character, but it will render as a space instead.”
You can use space.
that wouldn’t make it perfectly aligned…
Then you can use more than one text label.
You can use \n
to create a new line.
TextLabel.Text = "Hey there,\nwelcome"
You can use \n
but you will need to have RichText enabled in the textLabel’s properties
You do not need for \n
RichText enabled.
you can use this:
Hey there, <br />
welcome VSCPlays
Oh really? I didn’t know that!
does that work in Lua ?
yes, but you need RichText
enabled
I am aware of that but I don’t want it to change it in script, I want to change it in the properties tab but as @Wigglyaa said, it’s not possible
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.