I want to make a kick message with 2 lines, so i made with \n
:
(also dont mind the weird arguments, i used cmdr as command)
return function(context, player : Player, reason)
if player ~= context.Executor then
return "You cannot kick yourself!"
end
if not reason then
player:Kick("You have been kicked by ".. context.Executor.Name ..".")
return "Successfully kicked ".. player.Name
end
player:Kick("You have been kicked by ".. context.Executor.Name ..". \nReason: "..reason)
return "Successfully kicked ".. player.Name
end
but when i tried it, it didnt show the 2 lines, even tho i used the special character that separates the 2 strings, so how do i fix the problem?
if you know how, let me know!