My Part grows on both sides

I have a recurring problem in the tween when I increase or decrease the size of my objects, the shares increase on both sides

local Info = TweenInfo.new(0.75,Enum.EasingStyle.Linear,Enum.EasingDirection.Out)
local P = {Size = script.Parent.Size + Vector3.new(190,0,0)}

local tween = game:GetService("TweenService"):Create(script.Parent,Info,P)
wait(2)
tween:Play()

I’m pretty sure that’s meant to happen, you can fix it by moving the part half of the increased size to the side you want it on.

Yes I think it’s normal but it blocks me for many scripts I will try your tips

1 Like