local res = ban:GetAsync(tostring(player.UserId))
local str = [[
You are currently banned from Voidquake Clicker.
Your ban reason: %s^dat.
Your ban will never expire.
You can appeal this ban at <communication link [hidden only for this purpose]>
]]
str:gsub('%s^dat.', res .. '.', 1)
player:Kick(str)
Looks like you should be using string.format instead.
local res = ban:GetAsync(tostring(player.UserId))
local str = [[
You are currently banned from Voidquake Clicker.
Your ban reason: %s.
Your ban will never expire.
You can appeal this ban at <communication link [hidden only for this purpose]>
]]
player:Kick(string.format(str, res))