Hello!
I’m a little confused about the arguments of :ToWorldSpace and :ToObjectSpace as I am having trouble getting consistency.
So, let’s say I have 2 CFrames, one is called “plotCFrame” where an object would be placed, and another one would be “partCFrame”, the part that would be placed.
local plotCFrame = CFrame.new(100,10,100)
local partCFrame = CFrame.new(10,0,10)
-- Now, to place the part relative to the plot, would I do
part.CFrame = plotCFrame:ToObjectSpace(partCFrame)
-- or
part.CFrame = partCFrame:ToObjectSpace(partCFrame)