# FAQ and Troubleshooting

## Do I Need To Import SQL?

No. This resource does not use a database import step.

## The HUD Does Not Show

Check these first:

* `ox_lib` is started
* The player load event is firing for your framework
* You did not hide the HUD with another script using `ToggleVisible(false)`
* The NUI built files exist correctly

## The Music Widget Does Not Work

Check:

* `xsound` is started
* `Config.DefaultHudSettings.music_info.active` is enabled

## Voice Or Radio Info Does Not Update

Check:

* You are using `pma-voice` or `SaltyChat`
* If not, adapt `modules/voice/client.lua` to your own voice script

## Fuel Does Not Show Correctly

Check:

* Your fuel script is one of the supported ones
* If not, update `modules/utils/client.lua`
* Electric vehicles are configured correctly in `Config.ElectricVehicles`

## Seatbelt Or Engine Keybind Does Not Work

Check:

* `Config.ToggleSeatBelt.active` or `Config.ToggleVehicleEngine.active` is enabled
* The selected keys are not blocked by another script
* You restarted the resource after editing config

## How Do I Change The Server Name Or Logo In The HUD?

Use:

```lua
Config.DefaultHudSettings.client_info.server_info
```

The logo path uses:

```lua
ui/build/images/server_images/<file>
```

## How Do I Change Weapon Labels?

Use:

```lua
data/weapons.lua
```

## I Changed Config But Nothing Happened

Check these points:

* You edited `config.lua`
* You restarted the resource
* The player is not still using saved HUD preferences from the UI


---

# 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.0resmon.org/0resmon/0r-resources/0r-hud-v3/faq.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.
