feat(server/commands): skin

This commit is contained in:
Andyyy7666
2023-08-28 03:06:56 +02:00
parent 0ee9700777
commit 09c9ca254d

View File

@@ -161,3 +161,17 @@ lib.addCommand("setgroup", {
})
end)
lib.addCommand("skin", {
help = "Admin command, set player into character clothing menu.",
restricted = "group.admin",
params = {
{
name = "target",
type = "playerId",
help = "Target player's server id"
}
}
}, function(source, args, raw)
TriggerClientEvent("ND:clothingMenu", args.target)
end)