I already asked Suphi this but what do you guys think
-- 1
local ds = DataStoreModule.new("Player", player.UserId) -- Value: {PlayerStats = {Coins = 30, Gems = 2}, CollectedCoins = {"Coin1", "Coin2", "Coin3"}}
-- 2
local statsDS = DataStoreModule.new("Player", player.UserId, "PlayerStats") -- Value: {Coins = 30, Gems = 2}
local coinsDS = DataStoreModule.new("Player", player.UserId, "CollectedCoins") -- Value: {"Coin1", "Coin2", "Coin3"}