UI on Phone, Tablet, and PC

Good evening,

I’m starting to get into UI design on ROBLOX, and I have a quick question. How do I make it so UI looks scaled (specifically text) on all devices (except for console)? When I try TextScaled, it doesn’t help. Anyone have a solution to this issue?

Desktop:

IPhone 7:
image

IPad:

1 Like

Maybe reduce the fontsize. Is your text wrapped?

I recommend using Scale not Offset ( Located in Size Property ; Put Offset Values to ‘0’ )
Scale will put the UI as the same size, etc for every device.

Yes, my text is wrapped? Should that not be?

I do. I use a plugin that converts offset to scale.

Have you tried using a UITextSizeConstraint? If that did not work, you can try using a UIScale to manipulate the size of the TextLabel itself.

So, do I just add UIScale to each TextLabel and TextButton, or do I have to edit it in some way?

Yes, try adding it to each one individually. Also, as, @coreful recommended, try setting the TextWrapped property to true.

I tried that, and I set the textwrapped property to true. Still doesn’t work.