How to tween part in one direction

so you want it to rise up infinitely?

Just a certain amount like 5 studs.

I did this and it worked!

local tweenSize = {
	Size = Vector3.new(1, 10, 1),
	Position = Vector3.new(part.Position.X, part.Position.Y - 4.5, part.Position.Z)
}

I don’t understand why 4.5 worked but it did.

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