GUI Zoomed from different platforms?

This happens whenever I develop on my laptop.

This may be caused beacuse you are using Offset instead of Scale, basically when using Scale the GUI will be the same size on each screen size.

You should read this helpful guide as it goes more in depth on Scale and Offsets.

Use Scaling if you want your Screen GUI’s to be all the same sizes on all devices you can. do this by going to the properties of each frames , text buttons and text labels etc. Change the Offset to 0 on fall of them then start scaling them from 0.1 After that you can go ahead an mannually Size them.

2 Likes

Tip: There is a plugin called “AutoScale GUI” for this.

1 Like

Note that scaling alone won’t resolve proportionality issues. Please use UIAspectRatioConstraint and Scale together. I recommend using Scale, reading AbsoluteSize and adding a UIAspectRatio constraint to an instance with ratio property of AbsoluteSize.X/AbsoluteSize.Y

1 Like