How do I make a scrolling frame start at the bottom?

I’ve got a scrolling frame and a list UI layout going from bottom to top. But does anyone know of a way to make the scrolling frame start scrolled at the bottom?

3 Likes

Yes you will want to set both of these in the scrolling frame:

Rotation to 180:

and Vertical Scroll Bar Position to Left (since it is now upside down):

1 Like

Riiiight

2 Likes

You will ofcourse have to orient (rotate) all your UI elements within the frame to 180.

1 Like

Im confused as to what you are showing… where is the scrolling frame?

1 Like

I have a solution. You can use ScrollingFrame.CanvasPosition to set the canvasposition, and use ScrollingFrame.AbsoluteCanvasSize.Y to move it to the bottom.

ScrollingFrame.CanvasPosition = Vector2.new(0, ScrollingFrame.AbsoluteCanvasSize.Y)

Sorry for the bump. I saw this post a long time ago and found a solution.

11 Likes

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