I’m setting my frame inside my billboardGUI, but its border and size, including the text inside of it, are weirdly resized:
As we can see, both the Frame’s border and the Text’s size are weirdly resized considering how far you are from it. I’m not using offset, only scale. What should I do? I want to make it fix instead of resizing it.
This is usually because the border and the text and the UICorner have their thickness/size properties set to offset, offset keeps a uniform scale through all possible resolutions while scale changes dynamically, you would have to make your own border using a frame if you want to achieve the same effect.