Help with multiple line kick message

I want to make a multiple line kick message, but it doesn’t work. I have tried using \n, but it doesn’t work. What do I do?

\n should work but I think you can also use brackets

1 Like

Update, I checked with \n and it worked fine. Can I see your code?

I fixed it using another way, I just didn’t use multiple lines and used | instead. It works fine.

local Game = game
local Players = Game:GetService("Players")
local Player = Players.LocalPlayer

Player:Kick([[Hello
world!]])
local Game = game
local Players = Game:GetService("Players")
local Player = Players.LocalPlayer

Player:Kick("Hello\nworld!")

Both of these work, I’m not sure what you were doing incorrectly.

I don’t know either. But now it works.