> ## Documentation Index
> Fetch the complete documentation index at: https://docs.markz3d.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

<Steps>
  <Step titleSize="h2" title="📦Required Dependencies">
    * Install [Utility Lib](https://github.com/utility-library/utility_lib)
  </Step>

  <Step titleSize="h2" title="🐂 Add the spraygun to the ignored weapon list (ox_inventory)">
    Add the following
    [convar](https://docs.fivem.net/docs/scripting-reference/convars/) to your
    `server.cfg` to prevent `ox_inventory` from removing the spraygun weapon

    ```
    setr inventory:ignoreweapons ["WEAPON_SPRAYGUN"]
    ```

    Save the changes and restart your server to apply the configuration

    <Note>If you already have the `inventory:ignoreweapons` [convar](https://docs.fivem.net/docs/scripting-reference/convars/) set elsewhere in your `server.cfg`, simply add `WEAPON_SPRAYGUN` to the existing array.<br />For example, if your current array is `["WEAPON_KNIFE", "WEAPON_BAT"]`, update it to `["WEAPON_KNIFE", "WEAPON_BAT", "WEAPON_SPRAYGUN"]`.<br /><br />Make sure each weapon is separated by a comma and enclosed in double quotes.</Note>
  </Step>
</Steps>
