What is the 'newline' character in roblox strings?

“\n”

You have to execute code to use it within UI stuff though. Writing it into the Text property won’t work. Just do it from a script or command line:

blah.Label.Text = "Test\nA new line!\nAnother new line"

Remove newlines:

message = message:gsub("\n", " ")
60 Likes