Hey, I wanted to know if it is possible to use formatting or rich text other than \n within kick messages, I’ve looked and so far can only see that you can use \n on plr:kick().
if you want to show a custom gui before you kick you can do something like this
-- server script
local remoteEvent = game.ReplicatedStorage.RemoteEvent
local function KickPlayer(player, message)
remoteEvent:FireClient(player, message)
task.wait(5)
player:Kick()
end