GUI Resizing help

I know this has been asked many times, but I cannot find a proper solution that makes sense…

I have to make it so that this GUI:

Stays in the same ‘position’ and scale, only scaling when I change the verticality of my screen.
Right now these are set to SizeConstraint of RelativeYY, and this happens (if I strech it on both my monitors.)

I need to know how to make it so that it stays relatively the same size without stretching so much.

1 Like

If you use a UIAspectRatioConstraint I think that will take care of keeping the stretching from ruining the image. Regardless of what scaling you are using, it will lock it to any aspect ratio that you choose, depending if you want it to match it’s x scaling or y scaling.

Do note that it doesn’t play nice with UIGridLayout, not sure why it happens but yeah.

Use offsets instead of scale because the scale is a percentage of the parent while the offset is like pixels of the screen