How did they get a button to hide the Leaderboard? I thought this wasn’t possible (Video for reference)
It also doesn’t seem to be a Custom Leaderboard either, as it perfectly mimics the Roblox Default Leaderboard so it looks like it is the Roblox Leaderboard, but if it’s a custom one then my bad.
Haven’t downloaded the video, but if there’s a custom button to hide the leaderboard then they used the SetCoreGuiEnabled method from StarterGui. Something like this:
--!strict
local StarterGui = game:GetService("StarterGui")
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)