> For the complete documentation index, see [llms.txt](https://codestudio5m.gitbook.io/codestudio/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://codestudio5m.gitbook.io/codestudio/our-scripts/fingerprint-scanner/setup.md).

# 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:&#x20;
   * <pre class="language-lua" data-title="qb-core/shared/items.lua " data-overflow="wrap"><code class="lang-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"] = ""
         },
     </code></pre>
   * <pre class="language-lua" data-title="ox_inventory/data/items.lua" data-overflow="wrap"><code class="lang-lua">['finger_scanner'] = {
         label = 'Finger Scanner',
         weight = 0,
         stack = true,
         close = true,
         description = ""
     },
     </code></pre>
3. Enable this  <mark style="color:orange;">**CodeStudio.Enable\_Fingerprint\_ID**</mark>  if you want to use a Unique Fingerprint ID system that supports QB and ESX&#x20;

## Events

1. <pre class="language-lua" data-title="Open UI"><code class="lang-lua"><strong>TriggerEvent(cs:fscanner:openUI)
   </strong></code></pre>
2. <pre class="language-lua" data-title="Close UI"><code class="lang-lua"><strong>TriggerEvent(cs:fscanner:closeUI)
   </strong></code></pre>
