I’m away from my PC at the moment but will do my best to explain.
So I’m working using Region3 to register all parts within a certain magnitude of a BasePart; the purpose of this is to then clone said parts and put them into a Viewport Frame.
My issue is however that not all parts are being registered / accounted for from within said region.
Example of how it works:
local BasePosition = Part.Position
local Max = BasePosition + vector3.new(100,100,100)
local Min = BasePosition - vector3.new(100,100,100)
I’m using RenderStepped service for this as it goes in-par with my ViewportFrame positioning.