Custom Appearance

Use your exports/trigger here if using any other appearance script

1

Set the appearance to custom from default

Config.Appearance = "custom"
2

Add your export/trigger to open appearance menu

function Config.CustomAppearance(ped)
    --example rcore
     TriggerEvent('rcore_clothing:openCharCreator')
end
3

Add your export/trigger to set clothing to non player peds

function Config.SetPedClothing(ped, skinData)
    if not skinData then return end

    exports.rcore_clothing:setPedSkin(ped, skinData)
end

Last updated