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()