Right so I’m making a billboard gui and i have a text button whenever i zoom out the text size increases and my text is scaled anyone know a fix to this?
If you size the BillboardGui using Scale instead of Offset you should be able to give it a static size so it doesn’t become massive when you zoom out. (Scale is equal to studs in this case)
that is what i did… the increments are scaled so is the text
You have to enable the TextScaled
property for the text button so it doesn’t scale (it will still scale if you get close enough to it but you can’t really do anything about it).
If this is the case, I can’t seem to replicate your problem unless you are talking about it scaling back in when you go close to it - I don’t think there’s a way to fix this.
I did that already it has text scaled enabled
What I’m saying is if i zoom in it goes abnormally bigger and if i zoom out it goes abnormally smaller i had the issue with a frame which i fixed my self however the method just doesnt work with text
Do you have the TextButton also sized by scale aswell? It sounds like the sort of thing that happens when the bounds of the TextButton are defined with pixels, so it becomes really small when close up. If this isn’t the case, I still can’t replicate your problem.
want me to send the incremenets and size so you can get a better understanding
That would help me in understanding your problem.
Could you also be talking about the fact that the text goes small, but the box goes big when you get close to it? Just checking to see if it’s this or not.
The box is transparent and heres the text buttons size {0.4, 66},{0.4, 65}
This appears to be the problem then. I’m not sure why you’re using Offset in this case, could you try using {0.5, 0},{0.5, 0}
and see if that somewhat fixes the problem?
I would of assumed text scale automatically scales it no matter the size?
I believe so. It will scale as much as it can to the bounds of your TextButton until the size exceeds 100.
Anyway thanks for your help it works now!