How do I stop billboard GUI text from getting smaller when I move closer?

As shown above. When I move closer to the text it gets smaller. How would I fix this? I am using scale, not offset.

4 Likes

just make the size not from 0 - 1, but in pixels.

you mean use offset? I’ve tried and it grows bigger as I get farther.

no i mean instead of doing this for the size:

--this is not pixels, and is the same size anywhere you go
(1,0,1,0) or (.4, 0, .2, 0) --no offset

do this instead if you don’t want it to be the same size the whole time:

--this is in pixels, not between 1 and 0
(200, 0, 203,0) --no offset

When I do that it makes it extremely big.

yes but when you move back, it stays the same size
so you just change the numbers to what you want