Installation

1. Download resource

Download the purchased resource from keymaster - the official site of fivem with purchased resources.

2. Illenium-appearance

If you have encountered a problem with your character getting up while using the barber shop, you need to make a change in your illenium-appearance

Replace the setPlayerAppearance function, with the one below:

../game/util.lua
local function setPlayerAppearance(appearance)
    if appearance then
        if not IsPedUsingAnyScenario(PlayerPedId()) then
            setPlayerModel(appearance.model)
        end
        setPedAppearance(cache.ped, appearance)
    end
end

Last updated