*This might not be in the right section
So with text guis, it seems like you can only make 1 line of text on it:
is there any way to make it more than 1 line? What i mean by this is like:
Hello There,
This is a test.
*This might not be in the right section
So with text guis, it seems like you can only make 1 line of text on it:
is there any way to make it more than 1 line? What i mean by this is like:
Hello There,
This is a test.
Add multiple text labels to the UI or scale the label down to make it longer it should automatically go down once it reaches the edge.
You can also check MultiLine
in a textbox.
You could do:
"Hello There, \n This is a test." or "Hello There, <br /> This is a test."
but you’ll have to use Rich Text for the second one.
i dont think this works as in i tried and it just adds the \n to the main line
To use \n you’ll need to type it in a script for example:
TextLabel.Text = "Hello There, \n This is a test."
and if you use RichText use
TextLabel.Text = "Hello There, <br /> This is a test."