Installation Guide

Let's start with the initial installation steps you need to follow to make the script work correctly.

πŸ“„ Configuration Guide

This guide covers the configuration options available for the Crime Tablet system. You can customize framework integration, command setup, interaction methods, UI styling, ranks/roles, upgrades, and more.


βš™οΈ Framework & Notification Integration

Config.frameworkType = 'ESX' 
Config.notifyType = 'OX'
  • frameworkType: Choose your game framework. Options:

    • 'ESX'

    • 'QBCore'

    • 'QBOX'

    • 'CUSTOM' (requires manual setup in server/functions_editable.lua and client/editable.lua)

  • notifyType: Select the type of notification system. Options:

    • 'ESX'

    • 'QBCore'

    • 'OX'

    • 'CUSTOM' (requires manual setup in server/functions_editable.lua and client/editable.lua


🧾 Commands Configuration

  • Define in-game commands for users and leaders.

  • Set enable to true or false to toggle command usage.

  • You can rename the command strings to your preferred trigger.


πŸ“¦ Item System

  • Enable item-based access to the system.

  • Define the item name players will use.


🎯 Interaction Settings

  • Interaction options:

    • 'ox_target'

    • 'qb-target'

    • 'draw3DText'

  • Adjust zOffset to change interaction height in 3D space.


πŸ“ Inventory System

  • Choose your inventory backend:

    • 'ox_inventory'

    • 'qb-inventory'

    • 'qs-inventory'

    • 'CUSTOM' (requires manual setup in server/functions_editable.lua and client/editable.lua


  • Customize the default organization logo and main UI color.


πŸ”„ Performance & Updates

  • Controls how often server checks occur (in milliseconds).

  • allowLoadDataWithScriptRestartWithoutRelog: useful for development/testing (You don't need to use /relog with systems likes a multicharacter).


πŸ’³ Nearby Withdraw/Stats

  • Enable stash deposit from nearby locations.

  • Enable organization ranking (requires pinkFrog_crimeZones from our Tebex).


πŸ›‘οΈ Crime Leader Permissions

  • Allow discord-based and framework-based group permissions. required resource: discordRoles

  • Works with Discord IDs or standard admin groups like admin, god.


πŸŽ“ Organization Grades

Each grade has specific permissions:

Permissions Explained:

  • withdraw, deposit: Inventory control.

  • upgrade: Organization upgrades.

  • addMember, removeMember, gradeSetting: Member management.

  • useStash, useArmoury, useWarderobe: Facility access.


πŸ“ˆ Default Organization Settings

  • DefaultSlots: Inventory slots

  • DefaultWeight: Max stash weight

  • DefaultMembers: Max initial members


⬆️ Upgrades Configuration

Upgrade Types:

  • members_limit: Increases member cap.

  • warehouse_slots: Adds stash/armoury slots.

  • warehouse_weight: Increases stash/armoury weight limit.

Each upgrade has:

  • description: Shown in UI

  • price: Per step

  • max: Max allowed value

  • inputStep: Step increment


🌐 Localization

  • Custom your locales

  • Current default: 'en'.


πŸ‘• Wardrobe Menu

The wardrobe menu is only a visual interface. It does not change your clothes by itself β€” you must define what happens when a player selects an option.

πŸ”Ή Define Your Wardrobe Opening Event

In the following section of client/client_editable.lua:

You must provide an event or export / event from your own clothing system that opens the wardrobe UI.

βœ… Example:


πŸ“Œ Since every server uses a different wardrobe system, we could not fully customize this for you. You need to connect this by yourself.


Last updated