Hello!
I am working on Industrial Revolution game (i know name is not right), and point of game is to make any kind of machines, factory machines, electric machines, space machines… anything you can think!
But i ran into problems…
So i have camera that should scan image and send analog data.
How to make it scan image?
I have never worked with Region3 before, but try this:
local minPoint = Vector3.new(0,0,0)
local maxPoint = Vector3.new(100,10,100)
region = Region3.new(minPoint, maxPoint)
for i,part in pairs(workspace:FindPartsInRegion3(region)) do
print(part.Name.." Is in region"
end