Infinity Store
Tebex StoreDiscord
  • CFX Auth
  • Resources
    • Scoreboard
      • Installation
      • Configuration
      • Robbery Integration
      • Exports
    • Squad system
      • Installation
      • Configuration
      • Exports
    • Notification
      • Installation
      • Configuration
      • Exports
    • Dashboard V2
      • Installation
      • Configuration
      • Webhooks
      • Exports
    • Job choice
      • Installation
      • Configuration
      • Exports
    • Pausemenu
      • Installation
      • Configuration
      • Exports
    • Playtime Shop
      • Installation
      • Configuration
      • Client events
      • SQL
      • Exports
    • Identity
      • Installation
      • Configuration
      • Exports
    • Keyguide
      • Installation
      • Configuration
      • Exports
    • HUD + UI LIB
      • Installation
      • Configuration
      • Customization
      • Exports
  • Military resources
    • Mortar
      • Installiation
      • Configuration
      • Exports
    • Bomb drone
      • Installiation
      • Configuration
      • Exports
    • Claymore
      • Installiation
      • Configuration
      • Exports
Powered by GitBook
On this page

Was this helpful?

  1. Military resources
  2. Claymore

Installiation

PreviousClaymoreNextConfiguration

Last updated 5 hours ago

Was this helpful?

  1. Download it from .

  2. Place inside the resources folder.

  3. If you want to use the claymore as an item, you need to add it in your inventory system (we added two item images you can find it named as claymore.png and laser_jammer.png, if you want to use it, add it to your inventory system).

  4. Select the framework in the config.lua

Config.Framework = 'ESX' 
-- Framework: ESX/QBCORE (if you don't use framework you can use the item as a command)
  1. You can customize the script in the config files.

The script contain the claymore prop.


Item

If you want to use items, create the item in your inventory system and enable it the config.lua

OX Inventory item template

["claymore"] = {
   label = "Claymore",
   weight = 5,
   stack = true,
   close = true,
},	
["laser_jammer"] = {
   label = "Laser jammer",
   weight = 5,
   stack = true,
   close = true,
},	

QB Inventory item template

claymore= {
   name = "claymore",
   label = "Claymore",
   weight = 5,
   type = "item",
   image = "claymore.png",
   unique = true,
   useable = true,
   shouldClose = true,
},
laser_jammer= {
   name = "laser_jammer",
   label = "Laser jammer",
   weight = 5,
   type = "item",
   image = "laser_jammer.png",
   unique = true,
   useable = true,
   shouldClose = true,
},

https://keymaster.fivem.net/