> For the complete documentation index, see [llms.txt](https://gocomedyfunstoredocs.gitbook.io/gocomedyfun-store/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gocomedyfunstoredocs.gitbook.io/gocomedyfun-store/scripts-free/dj-fun/english/configuration/debug.md).

# Debug

**Debug Mode**\
The `Config.Debug` parameter allows you to enable or disable the script’s debug mode

**Configuration Example**

```lua
Config.Debug = false
```

**Steps to Configure Debug Mode**

1. **Locate the Parameter**\
   In the `config.lua` file, find the line:

   ```lua
   Config.Debug = false
   ```
2. **Understand How It Works**
   * `false` = debug mode disabled (default)
   * `true` = debug mode enabled
3. **When to Enable Debug Mode?**
   * To test and check if points, zones, or interactions are working correctly
4. **Recommendation**
   * Enable debug mode **only during testing**
5. **Save and Restart**
   * After changes, save `config.lua` and restart the resource:

     ```
     restart dj_fun
     ```

**Summary**

* `Config.Debug = true` → shows useful developer information (zones)
* `Config.Debug = false` → normal mode, no extra information displayed
