Common Issues
A collection of common problems and their solutions to help you troubleshoot crm-appearance quickly.
Female images not generating
Female images not generating in crm-screener
If crm-screener isn’t generating female images, the ped model usually isn’t loading correctly when switching from male to female. Here’s how to fix it.
Open the screener client file:
- crm-client.js
Find the function
Around line 118, locate this function:
crm-appearance/crm-screener/crm-client.js
async function crm_env_ready() {
crm_faces();
}Replace it
crm-appearance/crm-screener/crm-client.js
async function crm_env_ready() {
crm_comps('mp_f_freemode_01');
}Reload and regenerate
- Quit FiveM completely, then restart the script (or your server).
- Rejoin and open the character creator (via
/skinor your preferred command). - Select the female ped model
mp_f_freemode_01and save the appearance. - Run
/crm_screen— female images will now generate correctly.