Hey, devfourm. I was just scripting and it came across me, I wonder how I can make a kick message on multiple lines. Could someone teach me about or how to do this? Basically I want the message to be on multiple lines like this
1- You have been kicked:
Multiline
KICK
Thanks
I mean you can use \n which signifies a newline for strings:
\n
pl:Kick("Line1\nLine2") -- or this pl:Kick(string.format("%s\n%s", "Line1", "Line2"))
The easiest thing I could think of is making a multiline string:
player:Kick([[ hey there you just got kicked ]])