🛠️Installation

Follow the steps below to install and set up the FT Scripts system on your FiveM server.


1️⃣ Dependencies

Before installing the script, make sure the following required resources are already running:

Resource
Purpose

To Take Picture for Id Card

2️⃣ Download & Extract

  • Download the script from Keymaster/assets page.

  • Extract it into your server's resources folder.

  • Suggested folder structure:

    resources/[ft-scripts]/ft_qb_idcards

3️⃣ Install Database.

Go to ft_qb_idcards\INSTALL-FIRST\database.sql Install SQL in server database


4️⃣ Configure Id Cards.

  • Go to ft_qb_idcards\shared\config.lua

  • Configure it as your need

  • To add new Id Cards you have to make sure to configure both parts

  • Just copy existing card block and paste in next block after },

  • make sure to add image at already define path with same image name as card item name

Config.Licenses = {
    [1] = {
        id = "id_card",
        title = "Identity Card",
        description = "Government-issued ID for identity verification.",
        ApplyFee = 100,
        RenewalFee = 150,
        image = "ui-images/id_card_template.png"
    },
    -- Other Cards
}

Config.PlayerLicenses = {
    id_card = {
        id    = "id_card",
        title = "Identity Card"
    },
    -- Other Cards
}

5️⃣ Install Inventory Item

  • Go to ft_qb_idcards\INSTALL-FIRST get item file depending on your inventory

  • If adding custom card Item make sure to just copy paste old item and just change name of it

  • Also add images of cards in inventory images folder


6️⃣ Ensure the script in your server.cfg file.

ensure qb-core
ensure ft_idcards

7️⃣ Done

✅ Restart your server! 🎉 Enjoy the script!


Last updated