Radius on Maps

I am trying to get some radius’ to show up on my map of restricted zones. It will draw the first radius in the config however, will not draw any subsequent radius’ listed. I am unsure as to why it will not draw the other zones. Any ideas?

The Config would be along the lines of

Airspace = {
    Restricted = {
        {coord = vector3(0,0,0), raidus = 100},
        {coord = vector3(3,3,3), radius = 250},
    }
}

My code is below:

function registerAirspaceZones()
            for index, zone in ipairs(airspaceZones) do
                local coordsKey = string.format("%.3f_%.3f_%.3f", zone.coords.x, zone.coords.y, zone.coords.z)
        
                if not drawnZones[coordsKey] then
                    drawnZones[coordsKey] = {
                        coords = zone.coords,
                        radius = zone.radius,
                        blip = nil  -- Blip will be created in the next function
                    }
                    print("Zone #" .. index .. " registered.")
                else
                    print("Zone #" .. index .. " already registered.")
                end
            end
        end

        function drawAirspaceBlips()
            for coordsKey, zone in pairs(drawnZones) do
                if not zone.blip then
                    print("Creating blip for zone at " .. coordsKey)
                    local radiusBlip = AddBlipForRadius(zone.coords.x, zone.coords.y, zone.coords.z, zone.radius)
                    SetBlipColour(radiusBlip, 1)                   -- Red Color
                    SetBlipAlpha(radiusBlip, 128)                  -- Semi-transparent
                    SetBlipAsShortRange(radiusBlip, true)         -- Visible at all ranges
                    SetBlipDisplay(radiusBlip, 4)                  -- Map and Minimap
        
                    -- Store the created blip reference
                    zone.blip = radiusBlip
        
                    -- Optional Label for clarity
                    BeginTextCommandSetBlipName("STRING")
                    AddTextComponentString("Restricted Airspace")
                    EndTextCommandSetBlipName(radiusBlip)
        
                    spCore.Notify('FAA Notice','Restricted airspace has been marked on your GPS.','success',5000,true)
                else
                    print("Blip already exists for zone at " .. coordsKey)
                end
            end
        end

You sure it’s drawing the first one and not the second? The first one has a typo, raidus should be radius.

Yea, I just typed that as an example, it’s not from my actual code.
I can post the actual tonight when home from work.

So the solution is the radius requires a .0 on the end of it… so instead of radius = 750 it has to be radius = 750.0 other wise the radius will not be drawn.