For some reason, when I open the game, I can’t find the leaderboard. When I press TAB, it only shows me the inventory option…
Are you talking about the entire player list itself? If so, then you should search in scripts for PlayerList
, since this is the line that disables it:
starterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)
If you’re talking about the leaderstats not showing up, like the player list does appear, but no stats or anything is visible, then make sure that the folder that contains the stats is called “leaderstats”. All lower case, check your spelling too, it must be exact.
Adding on to what @GalaxyGourmet said, if your place has a lot of scripts (especially when using free models or collaborating) you can use Studio’s “Find Results” window to quickly identify which scripts are messing with the CoreGui.
Hm, didn’t find any that matched that…
This is what it show btw…
Hello,
Replying on the one of @GalaxyGourmet;
@AccountedPresence If you can’t find your leaderboard, check if you made any scripts in StarterGui that looks like this:
starterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)
If it does set the “false” to true. That should enable your leaderboard.
If you can’t find any scripts matching to these, make a Local Script in Starter Gui and paste this into it:
starterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, true).
Let me know if this worked.
Yeah I couldn’t find it. 30 char
Try using the second script I sent with the true.
Your second method didn’t work either.
Are there any other scripts you think that disables them? Maybe you’ve added a script that uses an require()
. The code inside the require might have a disable script.
Do you mind if you have a look inside my game? Add me on discord: Ducky#5396
Alright, it’s fixed. Use a solution so people see it is fixed.