How do I make it so the farther away you get from a billboard GUI the smaller it gets?

Please correct me if this is the wrong category.

So I noticed that when you get far away from a billboard GUI it gets bigger(Well it doesnt actually get bigger. It just looks that way cause the frame inside of it does not shrink)
So how would I make it so the billboard GUI shrinks when you get far away from it?

Use scale instead of offset when setting the BillboardGui’s size.
It then sets the size in studs rather than pixels.

2 Likes

Try using Scale instead of offset. if that doesn’t give you the desired effect,

You can try making a custom billboard GUI. here’s some sample code:

1 Like

use scale instead of offset, like this (in properties it’s like this: {1, 0},{1, 0}, in luau, it’s like this: UDim2.FromScale(1, 1))

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.