Character Data Slots using Dev Products

Hey

For my game, I’d like to have a character save slot system, so that players can have up to six different characters on one account, each with their own set of data. I intend to increase the number of slots with each update until it reaches about 12, and I’d like some advice on how to make it so that they have two free slots and the rest are dev products that they must pay for.

The data table will look something like this


temp = {
	character_1 = {};
	character_2 = {};
	-- and so on and so on 
	
}

thanks!

1 Like