> For the complete documentation index, see [llms.txt](https://bunny-store.gitbook.io/bunny-store-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bunny-store.gitbook.io/bunny-store-docs/bunny-black-market/common-issue.md).

# Common Issue

#### **Q. I am getting a “Lack of Entitlement” error.**

**A.** This means one of the following:

* The **Bunny Blackmarket** script is **not added** to your **Cfx Server Keymaster portal**,\
  **OR**
* You are using a **license key from another Cfx account**.

If your friend purchased the script, they **must transfer** the asset to **your** Cfx account before you can use it.

***

#### **Q. How do I add more weapons?**

**A.** Open the following file:

```
bunny_weaponpack/config.lua
```

Add your new weapon entry inside the weapons list. That’s it.

***

#### **Q. I added or removed a Discord role, but players still can’t open the black market.**

**A.** Badger Discord API uses **role caching**, which means changes aren’t applied instantly.

To fix this:

1. Open:

   ```
   Discord_Badger_API/config.lua
   ```
2. Set:

   ```lua
   CacheDiscordRoles = false
   ```

This disables caching so new roles update in real time.

***

#### **Q. I added a weapon but the image is not showing.**

**A.** Make sure:

* The weapon image **filename matches exactly** with the entry in `config.lua`
* The image is uploaded to:

  ```
  bunny_blackmarket/html/images
  ```

Case-sensitive names matter. `pistol.png` ≠ `Pistol.png`.

***

#### **Q. The currency image isn’t showing.**

**A.** Ensure the correct currency image is placed in:

```
bunny_blackmarket/html/images/currency
```

The file name must match the `currency` value you set in your weapon’s configuration.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://bunny-store.gitbook.io/bunny-store-docs/bunny-black-market/common-issue.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.
