Installiation

  1. Place inside the resources folder.

  2. If you want to use the drone as an item, you need to add it in your inventory system (we added an item image you can find it in the item_img folder, if you want to use it, add it to your inventory system).

  3. You can customize the script in the config files.

The script contain the drone prop.

If you want to use a custom core, you need to edit the bridge files.


Item

If you want to use items, create the item in your inventory system and enable it the configs/config.lua (We have already prepared an image in the 'item_image' folder.).

OX Inventory item template

["drone"] = {
   label = "Drone",
   weight = 5,
   stack = true,
   close = true,
},	

QB Inventory item template

drone= {
   name = "drone",
   label = "Drone",
   weight = 5,
   type = "item",
   image = "drone.png",
   unique = true,
   useable = true,
   shouldClose = true,
},

Last updated

Was this helpful?