What's the best way to position a GUI in the corner of another GUI?

I am trying to position a GUI in the corner of another GUI. Here it is with offset:

The problem is that offset doesn’t work when trying to make mobile-compatible UI.

I have tried using scale, but the problem is that since my UI is not a perfect square, trying to get a GUI 25 units away from the top and sides makes for some really crazy numbers. Is there an easy way to put a GUI x number of units away from the corner?

Sorry if this was confusing, it’s just kind of hard to explain. Thanks!

“crazy” (decimal) numbers doesn’t matter, I would use UIAspectRatioConstraint to make the UI’s size looks equal

DevHub:

1 Like

This is actually what I ended up using before you replied :grin:. Thanks though!

1 Like