I did that and same thing,
RegisterCommand("mute", function(s,a,r)
local user_id = vRP.getUserId({s})
local license = ""
local user = GetPlayerIdentifiers(a[1]) local time = a[2]
for i=1,10 do
if user[i] then
thing = string.find(user[i], "license:")
if thing then
license = thing
end
end
end
-- change the true to your permission system check
if vRP.hasPermission({user_id,"mute.permission"}) then
if Get_UserMute(license) ~= 0 then
TriggerClientEvent("chatMessage", s, "^1User is already muted!")
else
Set_UserMute(license, time)
-- else
-- TriggerClientEvent("chatMessage", s, "^1you don't have permission")
end
end
end, false)