Yeah, that's it. The wiki is useless. Thanks for your help in advance.
1 | local DSService = game:GetService( "DataStoreService" ) |
2 | local savedTable = DSService:GetDataStore( "savedTable" ) |
3 | local table = { "One" , "Two" , "Three" } |
4 |
5 | savedTable:SetAsync( "Key" , table) |
You save a table just as you would save any other value. Usually for the key I use the player's UserId so that every player has a unique key that their data is held in.