This is no solution.
I recommend this UI setup from a post by @Dummiez. I’ve been using this kind of setup for years now and it works splendidly. You’d want to create a box (see the post) centered in the bottom of the screen, then have the image labels and the frame that you want to keep aligned parented to the same box that you’ve just created. This way no matter what the resolution is, it will stay the same and scale properly.
Edit: Basically to create the box that’ll make sure its children stays proportionally correct to one another, you create a frame and set these properties:
- Size
0.1, 0, 0.1, 0
- Position
0.5, 0, 1, 0
- AnchorPoint
0.5, 1
- BackgroundTransparency
1
- SizeConstraint
RelativeYY
then you parent the gui objects to this frame.