[SOLVED] Extend ScrollingFrame upward

Hi!

I’m making a console output thingy for my admin commands and ScrollingFrames are set to go from the Top to the Bottom.
Is there a way to make the ScrollingFrame go from the Bottom to the Top instead?

Any help would be appreciated.
Thank you!

You need AutomaticCanvasSize (property of scrolling Frame) should be XY (or Y) and use a UIGridLayout and set the starting Y position (at the bottom of the properties) to start from bottom.

1 Like

I’ve tried that, but when Frames reach the top, the ScrollingFrame extends down, while Frames still go upwards.

The frames will be positioned down when the scrolling frame extends…

For some reason, they just don’t.

1 Like

Hm… Wierd… When I get on pc, I’ll try to help you, if it wasn’t solved already.

1 Like

Hey there!

Just saying that I looked on google and there are other topics about this:

Hope this helps :slight_smile:

1 Like

Put a ‘UIListLayout’ object inside the ‘ScrollingFrame’ and set its ‘SortOrder’ property to ‘LayoutOrder’. Whenever a child is added to the ‘ScrollingFrame’ set its ‘LayoutOrder’ property to number - #ScrollingFrame:GetChildren(), where number is some large number.

2 Likes

I guess, I’ll do it this way. Thank you for your help!