Cframe tweening slower than size

hello, when i tween size and cframe in the same tween, the cframe takes a little longer that its noticable.

script:

local tween2 = ts:Create(p,TweenInfo.new(1),{
	Size = Vector3.new(size-1,-sizeY,size-1),
	CFrame = p.CFrame * CFrame.new(0,-sizeY/2,0)
})
tween2:Play()

wait i fixed it. i just changed the -sizeY to 0 and it worked