I’m trying to make my GUIs work for all computers/devices. I am using the AutoScale Lite Plugin, and I added Position Scale and Size Scale to all the GUIs but the GUIs still don’t look good at all
https://gyazo.com/3f8b8248a3cad3240b1992c0a4cebd7c
https://gyazo.com/c1de76ccd4a25b515ae840008393eaf4
Use a different plugin or do it yourself manually
nevermind, you need to scale the text (just looked at image my bad)
I don’t know how to do it manually so I use a plugin to do it for me.
There is no text its just TextButtons
Try following this article and try making a simple scale script using UIScale. Ex:
local gui = script.Parent
scale = Instance.new("UIScale",gui)
scale.Scale = gui.AbsoluteSize.X/1920
turn on the property .TextScaled
1 Like