I am trying to store a list of player names in Teams.Red, this list will then be put into an arraylist to teleport the players in the list.
Code (Java): List<String> list = new ArrayList<String>(); // Creating list list.add("One"); // Adding some strings in it. list.add("Two"); getConfig().set("List", list); // Replace "List" with your path. saveConfig(); This will make config looks like this: Code (YAML): List: - 'One' - 'Two'