DrawText3D wants a vector3 or manual a table with structure:

{
   x = 0.0,
   y = 0.0,
   z = 0.0
}

// Faster Way
vector3(0.0, 0.0, 0.0)

At line 104 in your script, not use Config.Zones which might have all coords, use instead vector3(zone.Pos.x, zone.Pos.y, zone.Pos.z) for param 1 in DrawText3D

Greetings :ok_hand: