Resize UI Element From Bottom Up?

Howdy, I’m trying to get my ImageLabel to resize itself from the bottom, unfortunately it’s resizing from the center. I know it’s probably a stupid question but, how does one achieve that?

The Issue I’m having is, the ImageLabel is resizing itself from the center.
robloxapp-20210720-0706025.wmv (138.2 KB)

The solutions I’ve tried currently, have been just fiddling with the Anchor Point to see if I could get the results I need. Unfortunately it has done no good for me so far.

button = script.Parent
wait(3)
button:TweenSize(UDim2.new(0,200,100,0), "Out", "Quad", 1)

Set the anchor point (X,Y) for example you could have anchor point (0.5, 0), so that it will move up from the center.
If you want it to go from the center down then I suggest you change it to (0.5, 1)

Note you do have to re-position it

1 Like

I’ll give that a shot and get back to you asap. Thank you.