Keeping GUI in the same place?

I have a special GUI for a client module, it needs to be in the same place and not offsetted. But its goes up as the screen gets larger, and down as it gets smaller. Is there any way to fix this?

Expected:


Result:

You can use a combination of scale and offset.
I think in your example you want it at the bottom of the screen but a certain amount of pixels above the bottom.
You can set the Y scale to 1 (which will be under the screen) and the Y offset to a negative count (representing how many pixels up it should be).

For example Y = {1,-35}

Put the hotbar slots and the press e thing under a same frame

Use a UIAspectRatioConstraint in the Frame, and set the aspect type to ScaleWithParentSize and change the Dominant Axis to Height:

You can use this method with whatever button or frame you want to keep the same height aspect as its parent.