Can I move leaderboard to left?

briust

Simple. Basic leaderboard is in right, can I move it left?

I have never seen anyone move the leaderboard before so I would say No its not possible. The only thing you can do is hide the leaderboard:

There is an article on the DevHub that explains everything about the leaderboard:

With @AustnBlox’s idea, you can create a custom leaderboard which is fairly simple to script, even with leaderstats, so you can basically recreate roblox’s and do whatever you wish to it.

Don’t think so … however that is a pretty simple interface to create yourself via different name and you would be able to move that anyplace.

Unfortunately, you currently cannot customize the appearance of the default Roblox leaderboard. But you can create your own leaderboard and customize it to your liking and hide the default Roblox leaderboard by putting this code in a LocalScript in StarterPlayerScripts

game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)

The article that @AustnBlox linked also covers how to hide the default Roblox leaderboard.

And I also assume that you already have plans to relocate the chat because the leaderboard would overlap the chat if you placed it in the top left corner of the screen. But you can easily fork the scripts for the default Roblox chat and customize pretty much every aspect of it.

That article only covers adding leaderstats to the default Roblox leaderboard, not creating a custom leaderboard or customizing the appearance of the default Roblox leaderboard.

I wasn’t talking about articles, I meant hiding the leaderboard and creating a custom one with leaderstats.

The only difference with the built in leaderstats is it automatically shows up and to skip it is as easy as not using the label leaderstats. Other than that it’s all the same. Very easy to mimic

1 Like

You cannot customize the appearance or location of the Roblox leaderboard, but you can create a custom leaderboard to mimic the features of the original + whatever additional features you want & use SetCoreGuiEnabled to hide the default leaderboard

Sidenote: Players are, however, more used to the leaderboard being in the top-right corner. Unless you really need to move it I think you should keep your leaderboard in the top-left, but you can take this with a grain of salt.