When using game.print (or player.print) to print a plain string that contains newlines ('\n') then four extra spaces are added after each newline.
Here's an example of string-with-newline vs for-looped-print:
Code: Select all
/c x = {'One','Two','Three','Four'} game.print(table.concat(x,'\n'))
/c x = {'One','Two','Three','Four'} for _,v in pairs(x) do game.print(v) end