Pro Bikes

Probikes = {}

---------------
-- Blip
---------------
Probikes.Blip = {
    Enable = true,
    Location = vector3(-1204.34, -1512.97, 4.37),
    Sprite = 226,
    Display = 2,
    Scale = 0.8,
    Colour = 3,
    Name = "Probikes",
}

---------------
-- Peds
---------------
Probikes.Peds = {
    [1] = {type = 4, hash= GetHashKey("u_m_y_gabriel"), x = -1202.27,  y = -1510.00,  z = 3.37, h = 121.43},
}

-------------
-- Vehicleshop
-------------
Probikes.FuelSystem = "LegacyFuel" -- Your trigger fuel
Probikes.VehicleKeys = "vehiclekeys:client:SetOwner" -- Your trigger to give keys
Probikes.SpawnVehicle = vector4(-1208.03, -1517.2, 4.35, 120.06) -- Spawn when buy
Probikes.PreviewVehicle = vector4(-1208.72, -1518.07, 4.35, 304.05) -- Preview Position
Probikes.CamPreviewVehicle = vector3(-1206.22, -1518.25, 4.34) -- Cam to preview 
Probikes.Plate = "BIKE"..tostring(math.random(111, 999)) -- Plate

-- You can add more bikes, change the price
Probikes.Vehicles = {
    [1] = {
        ['vehiclename'] = "Bmx", --Name
        ['vehicle'] = "bmx", --Model
        ['price'] = 250, --Price
    }, 
    [2] = {
        ['vehiclename'] = "Cruiser", --Name
        ['vehicle'] = "cruiser", --Model
        ['price'] = 125, --Price
    }, 
    [3] = {
        ['vehiclename'] = "Fixter", --Name
        ['vehicle'] = "fixter", --Model
        ['price'] = 350, --Price
    }, 
    [4] = {
        ['vehiclename'] = "Scorcher", --Name
        ['vehicle'] = "scorcher", --Model
        ['price'] = 300, --Price
    }, 
    [5] = {
        ['vehiclename'] = "Tribike", --Name
        ['vehicle'] = "tribike", --Model
        ['price'] = 400, --Price
    },  
    [6] = {
        ['vehiclename'] = "Tribike 2", --Name
        ['vehicle'] = "tribike2", --Model
        ['price'] = 500, --Price
    }, 
    [7] = {
        ['vehiclename'] = "Tribike 3", --Name
        ['vehicle'] = "tribike3", --Model
        ['price'] = 600, --Price
    },  
}

---------------
-- Language
---------------
Probikes.Language = {
    ["QBTarget"] = {
        ["Buy"] = "Buy a bike",
        ["IconBuy"] = "fa-solid fa-bicycle"
    },
    ["QBMenu"] = {
        ["Header"] = "PRO-BIKES",
        ["BuyBike"] = "Buy a bike",
        ["PreviewBike"] = "Preview a bike",
        ["Buy"] = "Buy:",
        ["For"] = "For:",
        ["Currency"] = "$",
        ["Back"] = "âŦ… Back",
        ["PreviewMenu"] = "Preview Menu",
        ["Preview"] = "Preview:",
        ["Press"] = "Press",
        ["ToClose"] = "To Close",
    },
    ["Notification"] = {
        ["MenuOpen"] = "Someone is in the menu please wait!",
        ["Bought"] = "Bike successfully bought!",
        ["NoMoney"] = "You dont have enough money!",
    },
    ["ProgressBars"] = {
        ["Entregar"] = "Delivering the order..."
    },
    ["QBInput"] = {
        ["ChoosePayment"] = "Choose Payment Method",
        ["Choose"] = "Choose",
        ["PaymentType"] = "Payment Type",
        ["Cash"] = "Cash",
        ["Bank"] = "Bank",
    }
}

Last updated