# FAQ and Troubleshooting

## Where Do I Change Script Settings?

Use:

```lua
0r-garbage/config.lua
```

## Do I Need To Import SQL Manually?

Yes. Import:

```lua
0r-garbage/database.sql
```

## The Menu Does Not Open

Check these first:

* Is the resource started correctly?
* Is `Config.Commands.OpenMenu.active` enabled if you use the command?
* Is `Config.Tablet.active` enabled if you use the tablet item?
* Did you add `garbage_tablet` to your inventory?

## Reward Items Are Not Given

Check these:

* `Config.ThrowBinBag.active` is enabled
* The reward item names exist in your inventory
* Your custom inventory integration in `modules/inventory/server.lua` returns correctly

## Target Interactions Do Not Show

Check these first:

* `ox_target` or `qb-target` is running
* Your custom target integration is correct
* You did not break the helper file in `modules/target/client.lua`

## Where Do I Change Vehicle Models?

Use:

```lua
Config.TaskVehicles
```

## Where Do I Change XP Or Money Reward?

Use:

```lua
Config.Tasks
```

## What Is Bundle In This Script?

`Config.Bundle` is used for optional tablet shortcut links to other resources such as `0r-delivery` and `0r-towtruck`.

If you do not use those resources, you can point the names to your own scripts or disable the related shortcut behavior in your custom integration.

## I Changed Config But Nothing Happened

Check these points:

* You edited `config.lua`
* You restarted the resource
* Your custom bridge, target, or inventory integration did not break the flow
