I want to make a new line a message. like so it has two lines.
my code:
local str = "1 line 2 lines"
Well, you have 2 options.
First, you can do:
local str = [[ 1st line 2nd line ]]
or:
local str = "Hi\nHi"
local string = [[
]]