How to scale a gui in the opposite direction?

How would I scale the blue bar in the opposite direction? (I need it to shrink to the right instead of to the left) I’ve tried making multiple values negative and nothing really works, probably just having a brain fart but I thought I’d ask here since I’m running out of time.

image

2 Likes

You could change the AnchorPoint of the GUI Object to 1,0 which which is the top right (defaults to top left)

Reference

3 Likes

It looks like you may need to set the AnchorPoint of the targeted GUI to opposite side of the blue bar. The Current AnchorPoint is (0,0). Try setting it to (1,0). Let me know if it works.

Thanks for reminding me about anchor point, completely forgot it existed.

1 Like