# 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
