ESX • QBCore • Qbox compatible
Instant download
Updates included
Discord support
Secure checkout

Installation Instructions for gs_tape

Follow these steps to properly install and configure your new resource:

  1. Download the Resource
    • Go to portal.cfx.re
    • Navigate to Assets > Granted Assets > gs_tape
    • Download the resource
  2. Extract the Files
    • Open the downloaded .zip file
    • Inside, you'll find a folder named gs_tape
    • Move the entire gs_tape folder into your desired server resources folder (e.g., /resources/[scripts])
  3. Add to Server Configuration
    • Open your server.cfg
    • Add the following line:
      ensure gs_tape
  4. Restart the Server
    • Restart your FiveM server (Important!)
  5. Configure the Script (Optional)
    • Navigate to gs_tape/config.lua
    • Edit the configuration options to fit your server's needs
Inventory Items
Included images
Installation Instructions

Add the following items to your ox_inventory/data/items.lua file:

['Police Tape (USA)'] = {
    label = 'tape_usa',
    weight = 100,
    server = {
        export = 'gs_tape.Police Tape (USA)',
    },
},
['Police Tape (UK)'] = {
    label = 'tape_uk',
    weight = 100,
    server = {
        export = 'gs_tape.Police Tape (UK)',
    },
},
['Police Tape (Germany)'] = {
    label = 'tape_de',
    weight = 100,
    server = {
        export = 'gs_tape.Police Tape (Germany)',
    },
},
['Police Tape (France)'] = {
    label = 'tape_fr',
    weight = 100,
    server = {
        export = 'gs_tape.Police Tape (France)',
    },
},
['Police Tape (Netherlands)'] = {
    label = 'tape_nl',
    weight = 100,
    server = {
        export = 'gs_tape.Police Tape (Netherlands)',
    },
},
['Police Tape (Australia)'] = {
    label = 'tape_aus',
    weight = 100,
    server = {
        export = 'gs_tape.Police Tape (Australia)',
    },
},
['Police Tape (Poland)'] = {
    label = 'tape_pol',
    weight = 100,
    server = {
        export = 'gs_tape.Police Tape (Poland)',
    },
},
['Police Tape (Spain)'] = {
    label = 'tape_sp',
    weight = 100,
    server = {
        export = 'gs_tape.Police Tape (Spain)',
    },
},
['Police Tape (General)'] = {
    label = 'tape_general',
    weight = 100,
    server = {
        export = 'gs_tape.Police Tape (General)',
    },
},

Execute the following SQL query to add the items to the database:

INSERT INTO
	`items` (`name`, `label`, `weight`, `rare`, `can_remove`)
VALUES
	('Police Tape (USA)', 'tape_usa', 0, 0, 1);
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES ('Police Tape (UK)', 'tape_uk', 0, 0, 1);
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES ('Police Tape (Germany)', 'tape_de', 0, 0, 1);
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES ('Police Tape (France)', 'tape_fr', 0, 0, 1);
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES ('Police Tape (Netherlands)', 'tape_nl', 0, 0, 1);
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES ('Police Tape (Australia)', 'tape_aus', 0, 0, 1);
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES ('Police Tape (Poland)', 'tape_pol', 0, 0, 1);
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES ('Police Tape (Spain)', 'tape_sp', 0, 0, 1);
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES ('Police Tape (General)', 'tape_general', 0, 0, 1);

Add the following items to your qb-core/shared/items.lua file:

['Police Tape (USA)'] = {
    ['name'] = 'Police Tape (USA)',
    ['label'] = 'tape_usa',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'Police Tape (USA).png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
},
['Police Tape (UK)'] = {
    ['name'] = 'Police Tape (UK)',
    ['label'] = 'tape_uk',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'Police Tape (UK).png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
},
['Police Tape (Germany)'] = {
    ['name'] = 'Police Tape (Germany)',
    ['label'] = 'tape_de',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'Police Tape (Germany).png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
},
['Police Tape (France)'] = {
    ['name'] = 'Police Tape (France)',
    ['label'] = 'tape_fr',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'Police Tape (France).png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
},
['Police Tape (Netherlands)'] = {
    ['name'] = 'Police Tape (Netherlands)',
    ['label'] = 'tape_nl',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'Police Tape (Netherlands).png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
},
['Police Tape (Australia)'] = {
    ['name'] = 'Police Tape (Australia)',
    ['label'] = 'tape_aus',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'Police Tape (Australia).png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
},
['Police Tape (Poland)'] = {
    ['name'] = 'Police Tape (Poland)',
    ['label'] = 'tape_pol',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'Police Tape (Poland).png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
},
['Police Tape (Spain)'] = {
    ['name'] = 'Police Tape (Spain)',
    ['label'] = 'tape_sp',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'Police Tape (Spain).png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
},
['Police Tape (General)'] = {
    ['name'] = 'Police Tape (General)',
    ['label'] = 'tape_general',
    ['weight'] = 100,
    ['type'] = 'item',
    ['image'] = 'Police Tape (General).png',
    ['unique'] = false,
    ['useable'] = true,
    ['shouldClose'] = true,
    ['combinable'] = nil,
},