Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Adjusting the display properties of the Leaderboard?

Asked by
K2mia 5
8 years ago

Hi all,

My game makes use of custom ScreenGuis which appear in the top right corner of the screen, so when the Leaderboard is displayed it is very hard to read, given its semi-transparent background. Is there a way to modify the Leaderboard frame to remove its transparency?

Thank you, K2

1 answer

Log in to vote
1
Answered by
Avectus 120
8 years ago

This is tricky to get around.

As far as I know, there isn't a way to edit the properties of a leaderboard.

However, you could remove the leaderboard altogether by using this code:

local StarterGui = game:GetService('StarterGui')

StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)

If a leaderboard is necessary, you could create a custom one.

Ad

Answer this question