Scrollingframes don't work inside of a TextLabel/TextButton/TexBox

I’m guessing this is a bug, when I have a scrollingframe inside a Textlabel/TextButton/TextBox it doesn’t work like it should. It appears as if it’s a Scrollingframe, but the scroll bar doesn’t show up, and you can’t scroll it. The Scrollingframe maintains this behavior in game as well.

If I put a frame inside the textlabel/button/box and then put the scrollingframe inside of that it works as expected.

I want to note that I experienced this earlier when I was creating a dropdown, but decided not to post it and instead go with creating a folder outside the button and just puting the scrolling frame inside that. However, after experiencing this a second time I decided to post about it.

What is the value of CanvasSize in the ScrollingFrame you are having problems with? If I remember correctly, CanvasSize is based on the parent’s size instead of the ScrollingFrame’s size.

1 Like

Ah, I didn’t know that the Frame/Item it’s in would effect it like that.
The CanvaseSize was {0,0},{2,0} after changing it to {0,0},{3,0} the scrollbar appears and scrolling works!

Much thanks, helperobc