Blip & Marker Studio

Click anywhere on the map to drop a blip — coordinates are generated automatically. No in-game /coords needed.

LOS SANTOS — click to place
Police Station
Hospital

Map Blips Script

client.lua — creates all blips on load

blips.lua
2 blips
-- Vangtech NZ — Map Blips
local blips = {
    { name = 'Police Station', coords = vector3(428.4, -984.2, 30.7), sprite = 60, color = 29, scale = 0.9 },
    { name = 'Hospital', coords = vector3(295.8, -1446.9, 29.9), sprite = 61, color = 1, scale = 0.9 }
}

CreateThread(function()
    for _, b in ipairs(blips) do
        local blip = AddBlipForCoord(b.coords.x, b.coords.y, b.coords.z)
        SetBlipSprite(blip, b.sprite)
        SetBlipColour(blip, b.color)
        SetBlipScale(blip, b.scale)
        SetBlipAsShortRange(blip, true)
        BeginTextCommandSetBlipName('STRING')
        AddTextComponentSubstringPlayerName(b.name)
        EndTextCommandSetBlipName(blip)
    end
end)

Vangtech NZ — Ultimate FiveM development studio. Generated assets are production-ready.

Not affiliated with Cfx.re / Rockstar Games