# 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


---

# 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-garbage-v1/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.
