HOW To print name of the zone
SYNO-SY opened this issue · 2 comments
SYNO-SY commented
Is there any way to print zone name if isInsidePoint?
mkafrin commented
@syno-dev The zone name is just a property on the zone.
local zone = CircleZone:Create(vector3(0.0, 0.0, 0.0), 3.0, {
name="circle_zone",
debugPoly=false,
})
print(zone.name) -- Name is stored on the zone
SYNO-SY commented
thank you yeah its working... i was getting nil its because i did not give name in the config