Everything works except the Y Axis is NOT supposed to move at all.
Achieve
I simply want my tween to move without changing the Y Position at all.
Issue
Well, it’s quite literally in the title. The Y section is moving.
Solutions
I’ve tried recording the position data and using that and it didn’t work and I tried recording the separate data of each position frame and it didn’t work.
For one thing you are seemingly falsely identifying Offset/Scale with your Y value, however you also need to identify .Scale of the Position.Y (otherwise it’s attempting to identify a UDim value as a number value).
Keep in mind a UDim2 value is formatted as (XScale,XOffset,YScale,YOffset).
@xZylter, @TerryMichaelBrunk & @VegetationBush, thank you for helping me with this small issue. I would of never thought of using the fromOffset or fromScale, although they didn’t fix the issue it was still good to know. Thank you again.