Hello everyone! Happy New Years Eve! I would like to figure out how I can scale this text size to not fill out the entire button but around 75% of it. I’m not looking in to using “TextScaled” as it makes the text fill out the entire button. I’ve tried using UITextSizeConstraint but that still fills out the entire button on lower resolutions!!!
This is what I want it to look like on all screens!
use UIScale. To set the scale, implement a script that gets the absolute vertical resolution of the screen (workspace.CurrentCamera.ViewportSize.Y) ,then divide it by some constant e.g 720 to get the Scale.
Using this method, you can make your UI completely with offset and then it will scale appropriately for all resolutions with the script.