Live leaderboard with multiplayer?

I want to create a live leaderboard in my game, shows like the top 5 players scores and it changes live, is this possible?

I am not sure.
Maybe in the future.

There IS a leaderboard behavior, but that only works on IOS devices and you need to create one before-hand in order for it to work.

Here is a link to the behavior handbook describing the leaderboard behavior.

@Gavn to make a live leaderboard, set the number of players you want by making global numbers for each player. The number of players, using the Players object, decides how many of those globals are activated. When a player enters the game, he or she should be logged in the player number and ups the number of players. When the player gets a point, it adds that point to the specific global for the player.
To decide what global a player should use, have the player test once and only once how many players there are, maybe even saving the number.
Next, have the points go into all of the global numbers available, but have them all turned off by switches except for the one the player selected. This lets the points feed into their scoreboard.