I was using EgoMoose’s Furniture Placement System it can be found here . I was wondering how could I make it objects stack? The math is to hard to understand.
CAP7A1N
(Cap)
October 8, 2019, 1:54am
#2
I believe this has already been asked. Assuming by stack you mean making it 3D.
I think you might’ve meant to say it uses Vector3 and you want Vector2? If so, you can convert by constructing a Vector2 using the properties of the Vector3.
local vector3D = Vector3.new(200, 200, 200)
local vector2D = Vector2.new(vector3D.X, vector3D.Y)
Your thread is coming off as vague so it’s becoming harder to understand what you want, namely what space you’re working in: interfaces or the Workspace? If it’s the Workspace, read my post again - you simply need to prevent movement across th…
1 Like
I still can’t find a solution.