Is there a way to anchor a BillboardGui?

I am adding a BillboardGui to a part with a TextLabel inside of it. I have came across this really annoying thing when I move the camera the BillboardGui kind of follows it. Is there a way to anchor a BillboardGui so it stays in the one spot?

Here is the BillboardGui Properties:

Video of what I’m talking about:

Try adding an invisible part in its desired location and setting the BillboardGui’s Adornee property to its instance.

Thanks for the reply. I have added a part in the location of the BillboardGui and added the BillboardGui Adornee to the part but I’m stilling having the same issue. What else do you recommend that you can think of?

You are using ExtentsOffset, you should use ExtentsOffsetWorldSpace to prevent this effect from happening:

image

ExtentsOffset offsets the billboard gui from the adornee relative to the camera orientation.

ExtentsOffsetWorldSpace offsets the billboard gui from the adornee relative to the global axis.

The adornee is the instance the billboard gui is positioned relative to. In your case, you don’t need to set it.

Here’s how it looks in practice: https://gyazo.com/50a5ff0517a00990fdd818d49d5306e6

I hope this helped. Good luck.

1 Like