Text Label with a background

I’m trying to make a text label have a background/texture inside of the label, not have an image behind it and stick out too!

Ex:
image

I want the text label to have a texture/image like this.

No one else has had this problem/post about this, or at least i haven’t stumbled upon it after many, many searches.

(Also, it’s a billboard gui… sooooo this may make it harder)

If you want a TextLabel with that image as its background then that’s pretty easy, although there’s no way to do it without adding an image behind it.

You can put an ImageLabel inside your BillboardGui and then a TextLabel inside that ImageLabel, like this:

BillboardGui1

Then inside of the TextLabel’s Properties, set the following settings:

  • AnchorPoint → 0.5, 0.5
  • BackgroundTransparency → 1
  • Position → {0.5, 0},{0.5, 0}
  • Size → {1, 0},{1, 0}

And then after a bit of messing around with the settings of the BillboardGui, it will look something like this:

From here on out you can add any image you want.
Also, keep in mind that the size of the TextLabel will scale with the ImageLabel, so when you want to make the ImageLabel bigger you won’t need to also change the size of the TextLabel.

Hope this helps!

1 Like

Hi! I solved this a bit ago and just forgot to take it down, thank you for your help regardless!

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