local function isPointInFrontOfCamera(x, y, z)
if type(getActiveCameraCoordinates) ~= 'function' or type(getActiveCameraPointAt) ~= 'function' then
return true
end
local cx, cy, cz = getActiveCameraCoordinates()
local tx, ty, tz = getActiveCameraPointAt()
if not cx...