Is it possible to change the maximum size of the Text in the TextLabel?

is it possible to make the text of the textLabel larger than the maximum? My problem is simple The text is very small despite this one being on maximum:

Capture d’écran 2022-12-10 135826

thanks!

1 Like

You can use TextScaled or RichText

1 Like

I know but it doesn’t work, in my example I used TextScaled

I don’t think you can go over the maximum size for text labels.

But I believe when changing the size of the label, not the text size, it will increase the text size, because of it having to fix.

Using rich text should allow the text to scale past the default maximum, however it makes the text look somewhat pixelated the larger it gets, and I do not see a way to edit the pixel count like a surface gui.

By decreasing PixelsPerStuds of the SurfaceGui, you can make textlabels significatly larger.

With 50 PixelsPerStud:

With 10 PixelsPerStud:

edit:
You can also set TextScaled AND RichText to true which will scale up the text size as much as possible.

2 Likes

I think you just need to turn on both text scaled and rich text? Otherwise, even if you have text scaled, the max size will still be 100px.

@Thw_cowl
Decrease PixelPerStud in your surface gui
(i just noticed the date of this post)

The TextScaled function just make the text fit to all screens, and if you place text scaled at true with the Size (UDmi2) at 1,0,1,0 for example, on phone screen, the text will fit the entire screen

but with RichText, the text will just ignore that, and the font size will cover what he have to cover

you can have unique skills with richtext like and others

SOLUTION: Make the text with Rich Text enabled, then change the size (UDmi2) of the instance

1 Like