🛠️Setup

This is a detailed setup guide for Fingerprint Scanner. If you have any questions before making a purchase, you can contact us on Discord

Setting Up the Script

  1. The script is standalone in nature, and you can find the required information in the config itself you can configure this is any framework

  2. You can use Fingerprint Scanner with commands or as an item:

    • qb-core/shared/items.lua
       ["finger_scanner"] = {
              ["name"] = "finger_scanner",                                                        
              ["label"] = "Finger Scanner",
              ["weight"] = 0,
              ["type"] = "item",
              ["image"] = "finger_scanner.png",
              ["unique"] = false,
              ["useable"] = true,
              ["shouldClose"] = true,
              ["combinable"] = nil,
              ["description"] = ""
          },
    • ox_inventory/data/items.lua
      ['finger_scanner'] = {
          label = 'Finger Scanner',
          weight = 0,
          stack = true,
          close = true,
          description = ""
      },
  3. Enable this CodeStudio.Enable_Fingerprint_ID if you want to use a Unique Fingerprint ID system that supports QB and ESX

Events

  1. Open UI
    TriggerEvent(cs:fscanner:openUI)
  2. Close UI
    TriggerEvent(cs:fscanner:closeUI)

Last updated