It’s pretty easy. Just go to the client-side scripts and find the part that looks like this:

-- Create Blips
Citizen.CreateThread(function()
	
	for i=1, #Config.Shops, 1 do
		
		local blip = AddBlipForCoord(Config.Shops[i].x, Config.Shops[i].y, Config.Shops[i].z)

		SetBlipSprite (blip, 71)
		SetBlipDisplay(blip, 4)
		SetBlipScale  (blip, 0.9)
		SetBlipColour (blip, 4)
		SetBlipAsShortRange(blip, true)

		BeginTextCommandSetBlipName("STRING")
		AddTextComponentString(_U('barber_blip'))
		EndTextCommandSetBlipName(blip)
	end

end)

-then you hash it out or delete it altogether.

1 Like