Hello i have issue with chat, everybody see the /me here is the script
RegisterCommand('me', function(source, args, rawCommand)
local playerName = GetPlayerName(source)
local msg = rawCommand:sub(3)
local name = getIdentity(source)
fal = name.firstname .. " " .. name.lastname
TriggerClientEvent('chat:addMessage', -1, {
template = '<div style="padding: 0.5vw; margin: 0.5vw; background-color: rgba(127, 0, 225, 0.6); border-radius: 3px;"><i class="fas fa-comment-dots"style="font-size:15px;color:lime"></i> <i><b><font size="3" color="#FFFF00">{0}:</font></b></i> <b><i><font color="lime">{1}</font></i></b></div>',
args = { fal, msg }
})
end, false)