-
What do you want to achieve?
Hello! Im looking for a way to check the top servers player count in a game
Like get the 9 in this number https://imgur.com/a/dkRdzeQ -
What is the issue?
Im having trouble finding a way -
What solutions have you tried so far?
Right now im trying to use the messaging service to get the number of players in a server and pick the highest
here is the recieving script
```lua
MessagingService:SubscribeAsync(‘TopGame’, function()
return #game.Players:GetChildren()
end)``` any tips are appreciated!