Leaderboard+ - Create Custom Leaderboards in Studio

You could pretty easily get it to support group rank/obby points, just by adding in the following code:

if Player:GetRankInGroup(GroupIdHere) == 25 then -- Where the 25 is the rank. 255 would be owner, 0 would mean they weren't in it.
    NewSlot.YourImageLabelHere.Visible = true
end

You’ll just have to edit the code slightly to get it to work :wink:

1 Like