You can manually break lines very easily. There are two simple ways to do this:
You can use \n to break to the next line at any place. \n will not be shown in the text.
\n
Not a / (slash) but a \ (backslash).
/
\
Example:
"First line\nSecond line"
Using [[]] instead of "" will allow you to create a string that spans multiple lines. You simply make an actual line break and it will work.
[[]]
""
[[First line Second line]]
Last updated 1 month ago