У меня есть код ниже, он должен работать как копирование детали, называемой "валун" (не закрепленной), и перемещать ее в нужную позицию, но вместо этого: "позиция не является допустимым элементом детали"
while true do
wait(2)
local original = workspace.boulder
-- Create the model copy
local copy = original:Clone()
-- Parent the copy to the same parent as the original
copy.Parent = original.Parent
-- Move the copy so it's not overlapping the original
copy.position = CFrame.new(-84.76, 206.227, 143.094) -- where error happens
Debris:AddItem(copy, 2)
end