[HELP] Simple script don't work

Hello, i have a script but it’s don’t work ! The code is :
`local blips = {
{name = “Permis de conduire”, id = 225, x = 416.6, y = -1108.04, z = 30.0527},
}

Citizen.CreateThread(function()
for _, item in pairs(blips) do
item.blip = AddBlipForCoord(item.x, item.y, item.z)
SetBlipSprite(item.blip, item.id)
SetBlipAsShortRange(item.blip, true)
BeginTextCommandSetBlipName(“STRING”)
AddTextComponentString(item.name)
EndTextCommandSetBlipName(item.blip)
end
end)`

Can you help me ? pls

Refer to this thread:

If it’s just for one simple blip, take this:

Citizen.CreateThread(function()
local blip = AddBlipForCoord(x, y, z) – Coord
SetBlipSprite(blip, tonumber(20)) — search the list on google
SetBlipDisplay(blip, 4) – 4 = you can see it on the minimap, on the map and on the radar
SetBlipColour(blip, 2) – 2 = grreen
SetBlipScale(blip, 0.9) – scale of the bllip

BeginTextCommandSetBlipName(“STRING”);
AddTextComponentString(tostring(“name of the blip”))
EndTextCommandSetBlipName(blip)
end)