#Get a list of all players with role, except they go down a list instead of to the side
1 messages · Page 1 of 1 (latest)
No, DO NOT convert Get All Players to a string or string list this way
You ALWAYS run the risk of:
A - Get All Players to string being longer than 512 characters and being cropped
B - ANY player can have , in their display name
This is the best method
Instead of using a List<String> Variable and List Add, you would use a String Variable, String Concat, and a Value String Switch
On loop, if the variable is empty, set the variable to ToString(Item)
If the variable is not empty, set the variable to VariableOutput + ToString(Item)
Value String Switch is an easy way to check if the variable is empty, just add an empty case
Oh ok