[HELP] Add markers to map (BLIPS)

Hey guys,

I’ve got this stuff but i don’t know how to modify it can anyone help me?!

local blips = {
{title=“Bus Station for Fast Travel”, colour = 26, id = 513, x = 462.39, y = -640.68, z = 28.46},
{title=“Bus Stop Sandy Motel”, colour = 49, id = 513, x = 1649.05, y = 3566.31, z = 35.36},
{title=“Bus Stop Tramway Poleto Bay”, colour = 49, id = 513, x = -753.81, y = 5579.02, z = 87.24},
{title=“Bus Stop Los Santos Airport”, colour = 49, id = 513, x = -1008.51, y = -2750.17, z = 13.76},
{title=“Los Santos Airport to Sandy Airfield”, colour = 26, id = 307, x = -1038.04, y = -2737.16, z = 20.17},
{title=“Sandy Airfield to Los Santos Airport”, colour = 49, id = 307, x = 1745.47, y = 3296.28, z = 41.14}
}

Citizen.CreateThread(function()

for _, info in pairs(blips) do
  info.blip = AddBlipForCoord(info.x, info.y, info.z)
  SetBlipSprite(info.blip, info.id)
  SetBlipDisplay(info.blip, 4)
  SetBlipScale(info.blip, 1.0)
  SetBlipColour(info.blip, info.colour)
  SetBlipAsShortRange(info.blip, true)
  BeginTextCommandSetBlipName("STRING")
  AddTextComponentString(info.title)
  EndTextCommandSetBlipName(info.blip)
end

end)

yes this is the one that works

spaces count…lol

for more info search the forums countless add marker topics have been made recently.