How do theses Player List UI's keep it's size no mater the screen size

Many Games that have custom Player List UI and they have a way of keeping their original size when you minimize the tab. This game is called “Collect All Pets”, but other games such as Murder Mystery 2 Also does the same thing when you shrink and expand the tabs :

As you can see, The Player List Retain their size

I tried Aspect Ratio Constraints and using only scale values on Udim2’s but to no avail. Those will result in stretching and shrinking on both axis.

I want to replicate having the list stay in the same position but keep it’s size.

If you use the offset instead of scale, It will remain the same size always. This is because offset is basically the number of pixels the gui’s size is. Hope this helps!

Well, I believe I got it with a few additions. I had to change the anchor point to {1, .5} so it was hugging the right


side of my screen , then use the scale values on position while using the offset values on the size like you recommended.

Thanks you!

No problem! Glad I could help! :+1: