Changing Billboard GUI SizeOffset property

Hi,

I’m trying to change the SizeOffset value of a billboard GUI, specifically the Y value, however I’m struggling to assign a new value and keep getting an error.

The property I want to change:
image

Line of code:

billboardGui.SizeOffset.Y = (model.PrimaryPart.Size.Y * 0.5) + 1

The error:
image

Any help would be great thanks

Hi! First time talking in Dev Forum

There’s a way you can assign Size Offsets by using Vector2 than assigning it solo.

billboardGui.SizeOffset = Vector2.new(x, y)

See if it works, you can also check this Post

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