# Appearance

## Client

### get\_clothing\_and\_prop\_values

Returns maximum values for clothing and prop UI sliders based on ped model.

#### Parameters

* sex: `string`

#### Returns

* `table`

```lua
bdtk.get_clothing_and_prop_values(sex)
```

***

### set\_ped\_appearance

Applies genetics, hair, overlays, clothes, and tattoos to the player's ped.

#### Parameters

* player: `number`
* data: `table`

#### Returns

* `void`

```lua
bdtk.set_ped_appearance(player, data)
```

***

### update\_ped\_appearance

Updates the internal `ped_styles` table and re-applies the appearance.

#### Parameters

* sex: `string`
* category: `string`
* id: `string|nil`
* value: `any`

#### Returns

* `void`

```lua
bdtk.update_ped_appearance(sex, category, id, value)
```

***

### change\_player\_ped

Changes the player's model based on the given sex.

#### Parameters

* sex: `string`

#### Returns

* `void`

```lua
bdtk.change_player_ped(sex)
```

***

### appearance\_rotate\_ped

Rotates the player's ped in a specific direction.

#### Parameters

* direction: `string`

#### Returns

* `void`

```lua
bdtk.appearance_rotate_ped(direction)
```

***

### load\_player\_appearance

Loads and applies a full character model including clothing and features.

#### Parameters

* data: `table`

#### Returns

* `void`

```lua
bdtk.load_player_appearance(data)
```

***

## Shared

### get\_ped\_appearence

Returns the current style data from `ped_styles` for a given sex.

#### Parameters

* sex: `string`

#### Returns

* `table`

```lua
bdtk.get_ped_appearence(sex)
```

***

### reset\_appearence\_styles

Resets the internal `ped_styles` table to its default values.

#### Returns

* `void`

```lua
bdtk.reset_appearence_styles()
```


---

# Agent Instructions: 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://docs.boii.dev/fivem-free-resources/bdtk/api/modules/appearance.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.
