I think your problem is that you're only calling game.Players:GetPlayers() once, at the beginning of your script. This is fine in solo because you only have one player, and that player exists immediately on the start of the game, so he or she gets in that list. However, in a server, the server starts and code runs before any players get into the game, so your players list is empty and stays empty. It's running the code fine, for all 0 players it thinks are in the game. Just refresh that list through every iteration of the loop!