1

Download Revo ID Card

Visit the FiveM Keymaster and download the latest version of Revo ID Card. Save the script to your computer.
2

Add to Resources

Place the downloaded revo_idcard folder inside your server’s resources directory.
3

Configure server.cfg

Add the following line to your server.cfg to ensure Revo ID Card starts with your server:
ensure revo_idcard
4

Add Items to ox_inventory

Open your ox_inventory/data/items.lua file and add the following items:
['id_card'] = {
  label = 'ID Card',
  weight = 1,
  stack = false,
  close = true,
  description = "Your personal identification card.",
  client = {
    image = 'revo_id_card.png',
  }
},
['driver_license'] = {
  label = 'Driver License',
  weight = 1,
  stack = false,
  close = true,
  description = "Your driver's license.",
  client = {
    image = 'revo_driver_license.png',
  }
},
['firearm_license'] = {
  label = 'Firearm License',
  weight = 1,
  stack = false,
  close = true,
  description = "Your weapon's license.",
  client = {
    image = 'revo_weapon_license.png',
  }
},
5

Add Item Images

Copy the following files from the item-images folder provided with this script and paste them into ox_inventory/web/images:
  • revo_id_card.png
  • revo_driver_license.png
  • revo_weapon_license.png
6

Start the Resource

Restart your server or run these commands in the server console:
refresh
ensure revo_idcard
Revo ID Card is fully configurable and optimized for performance. You can customize NPCs, card visuals, and prices in the config.lua file.