How to move scrollbar to outside of frame?

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    I want to have the scrollbar outside of the frame, or generally out of the way. Currently it only spawns inside the frame and I cannot modify where it’s placed (besides left or right)

  2. What is the issue? Include screenshots / videos if possible!
    When the scrollbar appears, it overlaps and covers any UI inside of the frame.

  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    Looked through ScrollingFrame properties, google, etc. VerticalScrollBarInset pushes ui to the side, but doesn’t solve the problem.

Unfortunately I cannot modify the items in the frame to be out of the way, because it uses a UIGridLayout that places the items up against the walls of the frame, so the scrollbar is currently overlapping my items no matter what.

I couldn’t find any topics relate to this issue, but maybe I missed them.

1 Like
1 Like

So a bit of a work around I decided to use is to just create another frame inside the scrolling frame and put the UIGridLayout on the inner frame. It technically works, but the inner frame’s border does not seem to expand the same way the scrolling frame would, so I just made it transparent and called it a day.

I wasn’t sure if it would recognize the inner frame for the dynamic sizing, but apparently it does. So I guess it’s good enough?

2 Likes

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