Problem with billboard gui size over npc's head

Hello there,

I’ve got a problem regarding billboard gui’s that I can’t solve.

I want to use a billboard gui to display the name over the head of an npc that always stays at the same place on the map, like a shop npc.

Problem is, that I want to have the size of the gui always being the same, so the gui doesn’t increase or decrease in size depending on the distance of the player to the npc. If the player walks aways of the npc, the gui should just get smaller like if you walk away of a model.

Is there any property I’ve not seen yet?
Hope you can help me there, have a nice day!

Hello,

If you want a billboardgui to stay the same size at any distance, you have to change the size property to scale. This means that you change the first value of the size property. So if your UI element had the size of {0, 200},{0, 100}, you would change it to {2, 0},{1, 0}.

2 Likes

Thank you very much! I’ve marked your post as the solution. Have a nice day.