GoodMorning, how to can i Add Blip in map? For example some $ in map . Thanks
You got here all blips: https://wiki.■■■■■■■■■■■/index.php?title=Blips
Just need add them to coords for example:
Citizen.CreateThread(function()
local blip = AddBlipForCoord(x,y,z) - - Replace with your X Y Z coords
SetBlipSprite (blip, 108) -- $ Sign
SetBlipDisplay(blip, 4)
SetBlipScale (blip, 1.0)
SetBlipAsShortRange(blip, true)
BeginTextCommandSetBlipName("STRING")
AddTextComponentString("your text")
EndTextCommandSetBlipName(blip)
end)
On your client.lua
5 Likes