Changing A Part's Orientation To 0, But Make The Size Look Like Before?

Hello everyone!
I’m trying to set a part’s orientation to 0,0,0 but change the part’s size to look like it before.
I have no idea how to explain this further but here is an image and video showing what I am trying to do:

Untitled


The part on the left is the one I want to change to be like the part on the right.

Thanks for helping, this is the first post I ever made!

You should be able to just say

local Part = workspace.before
Part.Size = Vector3.new(2,2,6)
Part.CFrame = CFrame.new(Part.Position)
1 Like

I’m so dumb, I never knew I could just do that :\

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.