How To Save a Simulator Style Backpack?

so I’m trying to make a saving system for simulator style backpacks using datastore2

since I can’t save objects how can I save the backpacks the player owns and what backpack they are wearing

  1. I’ve tried using a table in my datasote2 but since tables cant be put on explorer I can’t access it form other scripts
local BackpacksDefault = {
	["lil Tank"] = false,
	["Medium Tank"] = false,
	["MEGA tank"] = false,
	["Big Tank"] = false,
	["Star"] = false
}
1 Like

You could create an array like this

local Backpack = {}

Then you can add items to the backpack and then save the array like this.

I made a dev forum post a while back when I was having issues with saving items perhaps the solution to mine could help you too (Or could help you create one):

1 Like