-- __ _________ __ _____ _ _
-- \ \ / /_ _\ \ / / | __ \ | | | |
-- \ \ /\ / / | | \ V / | | | | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_
-- \ \/ \/ / | | > < | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __|
-- \ /\ / _| |_ / . \ | |__| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_
-- \/ \/ |_____/_/ \_\ |_____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__|
-- | |
-- |_|
Config = {}
Config.Despawn = true -- Despawns the vehicle after the player exits it.
Config.DespawnReturn = true -- Only if Config.Despawn = true will return the vehicle to the players inventory after deleting
Config.CanCarryCheck = true -- Checks if the player can carry the item before giving to him.
Config.DespawnTime = 1000 -- Time in milliseconds before the vehicle despawn.
Config.Vehicles = {
-- ["item name"] = "car spawn code", You can get the spawn code from https://docs.fivem.net/docs/game-references/vehicle-models/
["car_bf400"] = "bf400",
["car_adder"] = "adder"
-- Add more cars
}