Page cover

📍Blips

You can add or remove blips in the main config file in Config.Blips

Blip information can be found here: https://docs.fivem.net/docs/game-references/blips/

  • Set use blip to true to enable location blip

  • Coords must be vector3

  • Id is blip id

  • Colour is blip colour

  • Scale is blip scale

  • Title is blip name

Config.Blips = {
    {   -- La Puerta
        useblip = true, -- enabled blip for this location
        coords = vector3(-346.28, -1563.98, 25.23), -- coords of blip
        id = 126, -- id of blip
        colour = 5, -- colour of blip
        scale = 0.7, -- scale of blip
        title = 'Recycle Center', -- name of blip
    },
    {   -- Docks
        useblip = true, -- enabled blip for this location
        coords = vector3(822.63, -3194.46, 5.99), -- coords of blip
        id = 126, -- id of blip
        colour = 5, -- colour of blip
        scale = 0.7, -- scale of blip
        title = 'Recycle Center', -- name of blip
    },
}

Last updated