I am trying to show a MessageBox using a script instead of using a MessageBox proprety in my Script in a two separate lines.
Spoiler
Debug.MessageBox("Hello " + "Hello Again")
The result is :
Hello Hello Again
I want to Display Hello Again on another Line like this:
Hello
Hello Again
I did add lots of space after Hello in order so show Hello Again on another line like this:
Spoiler
Debug.MessageBox("Hello " + "Hello Again")
is there a Code for endline to type it in between Hello and Hello Again instead of adding lots of spaces ?
thx.