Blip, Marker & Checkpoint Browser
Find the right map blip sprite, blip colour, 3D marker or race checkpoint for your script. Every entry shows its ID and preview, with one-click copy and a ready Lua snippet.
Blips
A blip is the icon on the map and minimap. You create one with AddBlipForCoord,AddBlipForEntity or AddBlipForRadius, then pick the icon withSetBlipSprite and the colour with SetBlipColour. Most sprites are drawn in white and tinted by the colour, which is what the tint preview above shows. A few sprites (police, gang and mission icons) are already coloured and ignore the tint.
SetBlipDisplay(blip, 4)shows it on both the main map and the minimap.SetBlipAsShortRange(blip, true)hides it from the minimap edge when the player is far away. Use it for shops and other static points so the minimap stays clean.SetBlipScaletakes a float.0.8to1.0matches most vanilla blips.- Blip names use a text command:
BeginTextCommandSetBlipName("STRING"),AddTextComponentSubstringPlayerName,EndTextCommandSetBlipName.
Markers
Markers are 3D shapes drawn in the world with DrawMarker. They only last one frame, so you call it every tick while the player is close. The snippet above sleeps 500 ms when the player is out of range so the thread costs almost nothing when idle.
DrawMarker(type, posX, posY, posZ, dirX, dirY, dirZ, rotX, rotY, rotZ,
scaleX, scaleY, scaleZ, r, g, b, a,
bobUpAndDown, faceCamera, p19, rotate, textureDict, textureName, drawOnEnts)Checkpoints
Checkpoints are the race style cylinders and rings. They work differently from markers: you callCreateCheckpoint once, the game keeps drawing it on its own, and it stays until you callDeleteCheckpoint with the returned handle. Do not put CreateCheckpoint in a loop, and always delete your checkpoints when the player reaches them or the resource stops.
local cp = CreateCheckpoint(type, posX1, posY1, posZ1, posX2, posY2, posZ2,
diameter, red, green, blue, alpha, reserved)- The second position is the next point. It only sets where the arrow faces, so pass the next checkpoint of the route (or any point in the direction you want).
SetCheckpointCylinderHeight(cp, nearHeight, farHeight, radius)sets the cylinder height used when the player is inside the radius (near) and outside it (far).SetCheckpointRgba2(cp, r, g, b, a)colours the icon inside (arrow, flag, number). It is the current name ofSetCheckpointIconRgba; both work in Lua.SetCheckpointRgbachanges the main colour after creation.- Types 44 to 46 show a number or icon chosen with
reserved: 0 to 99 are plain numbers, 100 to 189 add a marker shape next to a digit. - Type ids here match game build 2189 and newer. Older builds use a slightly different order.
Data source
Sprite ids, names, colour values, marker types and checkpoint types come from the official FiveM docs (blips,markers andcheckpoints). Checkpoint names are descriptive labels, not official names.
More references tools
Model & Hash Browser
Search 900+ vehicles, 1100+ peds and every weapon with photos, spawn names and hashes.
Interactive Map
The whole GTA V map in your browser: a 2D map with coordinates and a 3D world you can fly or walk through.
Weapon Stats & Components
Every weapon with its hash, group, ammo type, components, attachments and tints.
