> For the complete documentation index, see [llms.txt](https://docs.vames-store.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.vames-store.com/assets/vms_charcreator/compatibility/renzu_multicharacter.md).

# renzu\_multicharacter

***

1. Open **renzu\_multicharacter/client/main.lua**
2. Search for `SkinMenu` function
3. Replace the function with this one below

```lua
SkinMenu = function()
    if Config.skin == 'skinchanger' then
        TriggerEvent('skinchanger:loadSkin', skin, function()
            local playerPed = PlayerPedId()
            SetPedAoBlobRendering(playerPed, true)
            ResetEntityAlpha(playerPed)
            SetEntityVisible(playerPed,true)
            TriggerEvent('vms_charcreator:openCreator', 0, false, false)
        end)
    else
        local playerPed = PlayerPedId()
	SetPedAoBlobRendering(playerPed, true)
	ResetEntityAlpha(playerPed)
	SetEntityVisible(playerPed, true)
	TriggerEvent('vms_charcreator:openCreator', 0, false, false)
    end
end
```
