How to change the orientation of tween part

Hi, I’m trying to change how this part growing; simply wanna make it like this

from >>> to this <<<

What i want to achieve is the part would grow in this position

image

but what happen is this

image

script

local TweenService = game:GetService("TweenService")


wait(10)
local Info = TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut)

local Size = {
	Position = Vector3.new(script.Parent.CFrame.X + 7.5, script.Parent.CFrame.Y  , script.Parent.CFrame.Z),
	Size = Vector3.new(16, 20, 22)

}

TweenService:Create(script.Parent, Info ,Size):Play()
wait(1)

local Info = TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut)

local Size = {
	Position = Vector3.new(script.Parent.CFrame.X- 7.5, script.Parent.CFrame.Y, script.Parent.CFrame.Z),
	Size = Vector3.new(1, 20, 22),


}
TweenService:Create(script.Parent, Info ,Size):Play()

I am having trouble understanding your issue. Could you record a video perhaps?

i’m afraid to say that i can’t do that at this moment but what i want to achieve is the part will increase it size on other facing direction for example in this illustration :

i really want to move the part in this facing position <<<

image

but i cannot figure out how can i change it from this moving size>>>
image

So your trying to resize the part and keep it in the same position?

that’s not what i meant,

i’m saying that what i want is to resize the part which is in this position <<< instead of right >> i have tried to make the X to negative but i doesn’t work at all