08-14-2018, 01:25 AM
Do you mean something like this?:
function OnServerPing(ClientHandle, ServerDescription, OnlinePlayers, MaxPlayers, Favicon) local newDescription = ""; cRoot:ForEachPlayer(function(player) newDescription = newDescription .. player:GetName(); end); return false, newDescription, OnlinePlayers, MaxPlayers, Favicon end