How do I tweak the StudsOffSet in Billboard GUI to always be [varies] studs above the Adornee?

I am making a part that will eventually get bigger, and I have a BillBoardGui parented to it. However when I change the increase the size, the BillBoardGui doesn’t stay certain studs above the part(Since i want it above the only thing i set is the Y axis for the StuddsOffSet property). I tried to see if there is some constant I could use in my script to have it always appear above the part but it didnt work. One of my first ideas, but failed solutions is: [StudsOffSet.Y = Part.Size.Y + [2]]

This is Urgent, and all contributions are appreciated!

Since the StudsOffset property adds an offset from the center of the part, you could do something like:

local offset = 2
BillboardGui.StudsOffset = Vector3.new(0, Part.Size.Y / 2 + offset, 0)
1 Like

At Certain sizes this doesnt work