BillboardGui help: Stop automatic expansion/extending

I’ve got AlwaysOnTop billboard guis for the point of navigation around my map, however, the billboardgui text keeps expanding; I don’t want it to. Anyone know how to stop it?

Photos of what I mean


2 Likes

This is a result of using offset instead of scale when developing the BillboardGui and it’s descendants.

Scale:

size
scalenotoffset

Offset:

offsetsize
offset

You can alternatively set the MaxDistance property of the instance to prevent it from being viewed from large distances. I’d recommend modifying the GUI and all descendants to use scaling instead of offset for sizing, or a combination of both the above.

7 Likes