AutoScale UI
Automatically scale and anchor UI objects as you create them - no selecting everything by hand. Let it be a thought and bother of the past.
01Installation
One click from the Creator Store - Studio picks it up and it starts working. No files to move, no setup.
02What it does
Build UI the way you normally do. As you create objects, AutoScale UI converts their sizing to Scale and sets the AnchorPoint for you, instead of leaving you to select every frame afterwards and convert them one by one. The manual cleanup pass at the end of a UI build is the thing this plugin deletes.
03Scale vs offset
Studio positions new UI in Offset - fixed pixels, which only look right on the screen you built them on. A 200-pixel button dominates a phone and disappears on a 4K monitor. Scale is proportional to the parent, so the layout holds on every device. AnchorPoint decides which point of the object sits at its position - centring and edge-pinning depend on it being set right.
-- offset: fixed pixels, right on exactly one screen
button.Size = UDim2.new(0, 200, 0, 50)
-- scale: proportional, right on every screen
button.Size = UDim2.new(0.18, 0, 0.07, 0)