forked from Simnation/Main
8 lines
288 B
Lua
8 lines
288 B
Lua
---@diagnostic disable: duplicate-set-field
|
|
if GetResourceState('fivem-appearance') == 'missing' then return end
|
|
if GetResourceState('rcore_clothing') ~= 'missing' then return end
|
|
Clothing = Clothing or {}
|
|
|
|
function Clothing.OpenMenu()
|
|
TriggerEvent('qb-clothing:client:openMenu')
|
|
end
|