> For the complete documentation index, see [llms.txt](https://corem.gitbook.io/corem/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://corem.gitbook.io/corem/crm-appearance/common-issues.md).

# Common Issues

### Female images not generating

<details>

<summary>Female images not generating in crm-screener</summary>

If your crm-screener isn’t generating female images, it’s likely because the ped model doesn’t load properly when switching from male to female.

**Fix Instruction**

1\) Navigate to:

```
crm-appearance -> crm-screener -> crm-client.js
```

2\) Search for the following function (around line 118):

```javascript
async function crm_env_ready() {
    crm_faces();
}
```

3\) Replace it with this:

```javascript
async function crm_env_ready() {
    crm_comps('mp_f_freemode_01');
}
```

4\) Quit FiveM completely, then restart the script or your server.

5\) Join FiveM and open the character creator (via /skin or your preferred command).

6\) Select the female ped model `mp_f_freemode_01` and save the appearance.

7\) Run `/crm_screen` — the system will now generate female images correctly!

</details>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://corem.gitbook.io/corem/crm-appearance/common-issues.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
