if i were to save a table like this
local data = {lastSword = "something",lastArmor = "something",ownedArmors = {30items...},ownedSwords={30items},coins=50,xp=50,totalcoins = 100,totalxp = 100}
could it be “too much” data to save ?
if i were to save a table like this
local data = {lastSword = "something",lastArmor = "something",ownedArmors = {30items...},ownedSwords={30items},coins=50,xp=50,totalcoins = 100,totalxp = 100}
could it be “too much” data to save ?
The data limit is 4mbs unless you are saving building data for a player, you will pretty much not hit that limit at all.
The line you have provided will fit even if you multiply it by 100.
(Read more on DataStores here)
You can also do
print(#game:GetService("HttpService"):JSONEncode(data))
To get a rough estimate of how much data you are saving.