[Help] Blips bug

Bump i am getting the same problem This is my client script:

local blips = {
	-- Illegal Places
	{title="Illegal Gun Shop",colour=21, id=110, x=-1320.983, y=-389.260, z=36.483}, -- Block 5148 - Illegal Gun Shop
	{title="Illegal Money Wash",colour=21, id=108, x=113.91, y=-1589.89, z=29.59}, -- Block 4010 - Illegal Money Wash
	{title="Coke Farm",colour=40, id=354, x=-102.72, y=1909.74, z=196.01}, -- Galileo Rd - Coke Farm
	{title="Coke Treat",colour=40, id=354, x=1390.46, y=3605.4, z=37.94}, -- Block 852 - Coke Treatment
	{title="Coke Resell",colour=75, id=354, x=-693.61, y=78.64, z=54.86}, -- Block 7052 - Coke Resell
	{title="Meth Farm",colour=26, id=403, x=91.061386108398, y=3750.0380859375, z=39.77326965332}, -- Stab City - Meth Farm
	{title="Meth Treat",colour=26, id=403, x=2432.41, y=4969.3, z=41.35}, -- Block 897 - Meth Treatment
	{title="Meth Resell",colour=75, id=403, x=-63.592178344727, y=-1224.0709228516, z=27.768648147583}, -- Under Olympic FWY I-4 - Meth Resell
	{title="Weed Farm",colour=52, id=140, x=2224.04, y=5577.36, z=53.84}, -- Off Route 1 - Weed Farm
	{title="Weed Treat",colour=52, id=140, x=-10.97, y=-1432.75, z=30.12}, -- Block 4007 - Weed Treatment
	{title="Weed Resell",colour=75, id=140, x=114.96, y=-1976.79, z=19.98}, -- Grove Street - Weed Resell
	{title="Opium Farm",colour=60, id=437, x=356.96, y=6474.14, z=28.85}, -- Paleto Bay Farm - Opium Farm
	{title="Opium Treat",colour=60, id=437, x=971.86499023438, y=-2157.61328125, z=28.475107192994}, -- LS Industrial Area - Opium Treatment
	{title="Opium Resell",colour=75, id=437, x=-1148.66, y=4939.69, z=221.27}, -- Hippie Farm - Opium Resell
	-- Weigh Stations
	{title="Weigh Station",colour=6, id=120, x=2630.68, y=604.37, z=95.71}, -- LS Route 15
	{title="Weigh Station",colour=6, id=120, x=2514.97, y=242.1, z=107.63}, -- LS Route 15
	{title="Weigh Station",colour=6, id=120, x=933.36, y=258.21, z=80.74}, -- LS FWY I-1
	{title="Weigh Station",colour=6, id=120, x=1370.0, y=686.42, z=80.76}, -- LS FWY I-1
	{title="Weigh Station",colour=6, id=120, x=1537.73, y=849.26, z=77.92}, -- LS FWY I-1
	{title="Weigh Station",colour=6, id=120, x=-3094.75, y=1127.06, z=21.06}, -- LS Near Block 7068
	{title="Weigh Station",colour=6, id=120, x=-3076.85, y=1392.45, z=21.41}, -- LS Near Block 7068
	{title="Weigh Station",colour=6, id=120, x=887.5, y=6510.77, z=22.06}, -- Paleto Near Block 900
	{title="Weigh Station",colour=6, id=120, x=1419.56, y=6450.01, z=20.89}, -- Paleto Near Block 900
	-- Airports
	{title="Airport",colour=3, id=90, x=-1336.25, y=-3043.99, z=13.9444}, -- LS Airfield
	{title="Airport",colour=3, id=90, x=1344.74, y=3126.03, z=41.32}, -- Sandy Shores Airfield
	{title="Airport",colour=3, id=90, x=2044.42, y=4768.07, z=41.0603}, -- Grapeseed Airfield
	{title="Airport",colour=3, id=90, x=-2324.49, y=3042.48, z=32.81}, -- Military Base
	-- Fire Departments
	{title="Fire Department",colour=1, id=60, x=215.786, y=-1642.49, z=29.7138}, -- FD LS
	{title="Fire Department",colour=1, id=60, x=1691.44, y=3590.96, z=35.62}, -- FD Sandy Shores
	-- Boats
	{title="Boat",colour=15, id=410, x=-2045.800, y=-1031.200, z=11.900}, -- Yacht
	{title="Boat",colour=15, id=410, x=3055.59, y=-4692.79, z=15.26}, -- Aircraft Carrier
	{title="Boat",colour=15, id=410, x=-1556.45, y=5376.27, z=4.1}, -- Crappy Boat
	-- Other Places
	{title="Other",colour=15, id=66, x=-397.12, y=4712.16, z=264.88}, -- Shake near Hippie Farm
	{title="Other",colour=15, id=66, x=1428.02, y=6345.06, z=23.98}, -- Dignity Farm
	{title="Other",colour=15, id=66, x=1151.84, y=4637.17, z=83.82}, -- Rocket Site
	{title="Other",colour=15, id=66, x=2492.77, y=3780.33, z=46.53}, -- Save Us
	{title="Other",colour=15, id=66, x=1036.78, y=2358.75, z=48.06}, -- Race Track
  }
      
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)

Everything shows up like it supposed to except

{title="Other",colour=15, id=66, x=1036.78, y=2358.75, z=48.06}, -- Race Track

I only have about 53 Blips in total. I Don’t have a clue what can be causing the problem. It was working just fine up until FiveM started having updates.

I’ve solved my problem by removing ATM blips.
Apparently you can not have many blips alike.

Try to remove a few blips that have more than one of the same type.

(Sorry for the bad english).

What is the name of the config file that shows the coords ?

I solved this by removing the blips from esx_holdup. In my case, there were 54 blips JUST for that along with 45+ for other things.

So you mean in case we want to keep those blips, we just need to change blips type???

There’s a blip limit on GTA itself.
Remove some blips and it will work.