> For the complete documentation index, see [llms.txt](https://tg-dev.gitbook.io/tg-dev-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tg-dev.gitbook.io/tg-dev-docs/tg-mechanicui/troubleshooting.md).

# Troubleshooting

#### The menu does not open

Check:

* The player is in the driver seat.
* The player is inside `actionDistance`.
* The player's job matches `JobName`, or the location is `public = true`.
* `ox_lib`, `oxmysql`, and `community_bridge` are started.

#### Text UI or marker does not show

Check:

* `Config.Marker.enabled`
* `markerDistance`
* `actionDistance`
* `public` and `JobName`
* Your bridge/core job detection

#### Money is not removed

Check:

* `config/bridge.lua`
* Core auto detection
* Account names
* Whether the player selected cash or bank

#### Vehicle changes do not save

Check:

* Vehicle ownership table
* Plate column
* Owner column
* Data column
* `TGBridge.Settings.VehicleStorage.Tables`

#### Wrong core detected

Set the core manually on  `config/bridge.lua` :

```lua
Core = {
    System = 'es_extended'
}
```

or:

```lua
Core = {
    System = 'qb-core'
}
```

or:

```lua
Core = {
    System = 'qbx_core'
}
```
