Need help with leaderboard gui (again)

i made a leaderboard gui, everything works fine but ScrollingFrame is awful

i cant reach the bottom of the list.
when i tested it in Studio, i look at AbsoluteCanvasSize, it was big enough to contain whole list.
but when i scrolled down it can’t reach the bottom. the problem is: AbsoluteCanvasSize is {597.11, 3459.81} but maximum CanvasPosition that i can reach is {x, 2961.2}

what i did wrong

i have enabled AutomaticCanvasSize: Y

1 Like

Do you use UIListLayout? If so that is probably why.

yes, im using UIListLayout. do i need replace it with something else?

Wait, one more question. Do you have this enabled?

Making it Top would fix the issue.

image

i already have it Top

image

Could you send a picture of ScrollingFrame and its content? [Explorer]

ScrollingFrame without players:
image

ScrollingFrame with players (100 entries):
image

Try removing UIPadding to see if that fixes the issue.

no, still the same issue even without UIPadding

Hmmm, weird. Could I get a .rbxm file with 100 entries UI? I will take a look.

thatleaderboardthing.rbxm (21.5 KB)

check the script as well, maybe the issue in it

1 Like

Removing UIAspectRatioConstraint from player frames should fix the issue. Doing so will mess up the player frame but that can be remade.
image

1 Like

Fixed file:
FixedFile.rbxm (14.9 KB)

1 Like

thanks! it fixed the issue with ScrollingFrame size.

but now i have this:

awful PaddingTop

I suggest you to remove the part of the code where it adds UIPadding and instead of using that you should create invisible frame holder for the top. That’s what I did for my UI aswell!

2 Likes

thank you! now everything works and looks just fine.

1 Like

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