Is it possible to do something like?
1 | datastore:SetAsync(player.userId, false , 420 ) |
If not, how would I be able to?
You can store a table in the DataStore.
If you haven't used tables yet, learn more about them here
You would do it like this:
1 | datastore:SetAsync(plr.UserId, { false , 420 } ) |
I would use a table, I've done it before, but recently forgot how. I think it would be
1 | game.Players.PlayerRemoving:connect( function (p) |
2 | local dss = game:GetService( "DataStoreService" ):GetDataStore( "ExampleName" ) |
3 | local data = { 1 = 1 , 2 = 2 } |
4 | dss:SetAsync(p.UserId,data) |
5 | end ) |