Here’s my code:
Players.PlayerAdded:Connect(function(Player)
Player:Kick("test\ntest2\ntest3")
end)
\n
used to create a line break, however it doesn’t seem to be working anymore. Does anyone know a fix for this?
Here’s my code:
Players.PlayerAdded:Connect(function(Player)
Player:Kick("test\ntest2\ntest3")
end)
\n
used to create a line break, however it doesn’t seem to be working anymore. Does anyone know a fix for this?
try this i’m not sure if it work’s or not
local msg = [[
test
ntest2
ntest3
]]
Players.PlayerAdded:Connect(function(Player)
Player:Kick(msg)
end)
just tried that, it doesn’t work.
Roblox removed the line breaks from kick messages, so there is no way to fix this.
Here’s a post from a Roblox Admin Newline Character doesn't work on kick messages - #12 by Tiffblocks
try spaces in between my be this will work