Is their a way to add a return command or line break in a st

What I am trying to do, not sure if its possible or not. Basically in each scene I would like to have a variable where I can enter my level objective. But instead of one continuous sentence It would like to have multiple paragraphs or split the lines up.

You can create a linebreak with “NewLine()” like so:

"First Line" + NewLine() + "Second Line"

Great, thank you :slight_smile: