How To Hide Learderboard

So i recently Tried This Script so my learderboard can dissapear here is the local script:
LocalScript
And i put it in Starter Player, StarterPlayerScripts And it Didint Work Can Someone Please Help me

Hey there! There’s a topic on the Creator Docs that explains exactly how to do this here.

To hide the default Roblox leaderboard, you need to create a server-side script in ServerScriptService and type out the following in that script;

local StarterGui = game:GetService("StarterGui")

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

This should work for you as I’ve tried it out myself, if you need further assistance please let me know :smile: (Please mark this as “Solution” if this resolves your issue)

1 Like

Thank You That Worked!

1 Like

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