-- Just String
local str = "The magic word is %s"
print(string.format(str, "Roblox"))
-- With Quotes
local str = "The magic word is %q"
print(string.format(str, "Roblox"))
-- New Line
local str = "Skip to
a new line and
another new line!"
print(string.format(str, "%q"))