Don't know what I'm doing and readme not very clear

hi all I’m trying to set up a vehicle spawner menu I’ve tried everything trying to set it up for multiple car brands only one works for me and readme not very clear

if anyone can help me I would really appreciate it

Depends how you are trying to set if up. Here is an example and just add on line 74 on the menu.lua . Note that you will need to edit function ThirdItem(menu) and change it to Fourth, Fifth, Sixth and so on if you continue with more categories.

function ThirdItem(menu)
    local submenu = _menuPool:AddSubMenu(menu, "INSERT CAR BRAND HERE") 
    local carItem = NativeUI.CreateItem("INSERT MAKE MODEL", "INSERT YEAR MAKE MODEL")
         submenu:AddItem(carItem)
    carItem.Activated = function(sender, item)
        if item == carItem then
            spawnCar("INSERT SPAWNCODE HERE")
            notify("Vehicle Spawned")
        end
   end

   _menuPool:MouseControlsEnabled(false)
    _menuPool:ControlDisablingEnabled(false)
end

fixed one problem and not sure what the other problem is now menus glitching out

_menuPool = NativeUI.CreatePool()
mainMenu = NativeUI.CreateMenu(“Vehicle Menu”, “~r~Antisocial Netowrk Custom Vehicles”)
_menuPool:Add(mainMenu)
_menuPool:MouseControlsEnabled (false);
_menuPool:MouseEdgeEnabled (false);
_menuPool:ControlDisablingEnabled(false);

– THIS IS FOR AN EXAMPLE, PLEASE USE YOOUR OWN CARS SEE THE README.MD FILE FOR MORE!

function FirstItem(menu)
local submenu = _menuPool:AddSubMenu(menu, “TOYOTA”)
local carItem = NativeUI.CreateItem(“ae86”, “1986”)
submenu:AddItem(carItem)
carItem.Activated = function(sender, item)
if item == carItem then
spawnCar(“ae86”)
notify(“Vehicle Spawned”)
end
end

_menuPool:MouseControlsEnabled(false)
_menuPool:ControlDisablingEnabled(false)
end

function secondItem(menu)
local submenu = _menuPool:AddSubMenu(menu, “NISSAN”)
local carItem = NativeUI.CreateItem(“ae86”, “ae86”)
submenu:AddItem(carItem)
carItem.Activated = function(sender, item)
if item == carItem then
spawnCar(“ae86”)
notify(“Vehicle Spawned”)
end
end

_menuPool:MouseControlsEnabled(false)
_menuPool:ControlDisablingEnabled(false)
end

function ThirdItem(menu)
local submenu = _menuPool:AddSubMenu(menu, “HONDA”)
local carItem = NativeUI.CreateItem(“HondaFit”, “HondaFit”)
submenu:AddItem(carItem)
carItem.Activated = function(sender, item)
if item == carItem then
spawnCar(“fit”)
notify(“Vehicle Spawned”)
end
end

_menuPool:MouseControlsEnabled(false)
_menuPool:ControlDisablingEnabled(false)
end

function FourthItem(menu)
local submenu = _menuPool:AddSubMenu(menu, “SUBARU”)
local carItem = NativeUI.CreateItem(“subisti08”, “subisti08”)
submenu:AddItem(carItem)
carItem.Activated = function(sender, item)
if item == carItem then
spawnCar(“subisti08”)
notify(“Vehicle Spawned”)
end
end

_menuPool:MouseControlsEnabled(false)
_menuPool:ControlDisablingEnabled(false)
end

FirstItem(mainMenu)
_menuPool:RefreshIndex()
Citizen.CreateThread(function()
while true do
Citizen.Wait(0)
_menuPool:ProcessMenus()
–[[ The “e” button will activate the menu ]]
if IsControlJustPressed(1, 10) then
mainMenu:Visible(not mainMenu:Visible())
end
end
end)

secondItem(mainMenu)
_menuPool:RefreshIndex()
Citizen.CreateThread(function()
while true do
Citizen.Wait(0)
_menuPool:ProcessMenus()
–[[ The “e” button will activate the menu ]]
if IsControlJustPressed(1, 10) then
mainMenu:Visible(not mainMenu:Visible())
end
end
end)

ThirdItem(mainMenu)
_menuPool:RefreshIndex()
Citizen.CreateThread(function()
while true do
Citizen.Wait(0)
_menuPool:ProcessMenus()
–[[ The “e” button will activate the menu ]]
if IsControlJustPressed(1, 10) then
mainMenu:Visible(not mainMenu:Visible())
end
end
end)

FourthItem(mainMenu)
_menuPool:RefreshIndex()
Citizen.CreateThread(function()
while true do
Citizen.Wait(0)
_menuPool:ProcessMenus()
–[[ The “e” button will activate the menu ]]
if IsControlJustPressed(1, 10) then
mainMenu:Visible(not mainMenu:Visible())
end
end
end)

–[[ COPY BELOW ]]

function notify(text)
SetNotificationTextEntry(“STRING”)
AddTextComponentString(text)
DrawNotification(true, true)
end

function spawnCar(car)
local car = GetHashKey(car)

RequestModel(car)
while not HasModelLoaded(car) do
    RequestModel(car)
    Citizen.Wait(50)
end

local x, y, z = table.unpack(GetEntityCoords(PlayerPedId(), false))
local vehicle = CreateVehicle(car, x + 2, y + 2, z + 1, GetEntityHeading(PlayerPedId()), true, false)
SetPedIntoVehicle(PlayerPedId(), vehicle, -1)

SetEntityAsNoLongerNeeded(vehicle)
SetModelAsNoLongerNeeded(vehicleName)

end