How do i make a tool storage system that saves?
does anyone own a free model that does that?
w4570
(w4570)
June 28, 2023, 9:29am
#2
Would be best to establish how does the player obtain these tools? Are these paid for by microtransanctions? Are these just picked up and once in their backpack they are stored automatically? If the player drops the tool do they lose access to it? etc.
just like the normal tools but put them in a chest or something and they save to next session
lV0rd
(Tin)
June 28, 2023, 11:14am
#4
You can make your own datastore, but remember, it won’t be very secure. (if you’re using basic datastores.)
I’d suggest you use something like DataStore2 or ProfileService (though they are quite advanced)
Now to save player’s backpack: (simplest way)
-You can create a folder inside the player called Tools.
-You can create Bool Values with the tool names
-When the player leave you can save those Bools data
-And when the player joins you can load that data and clone the tools to the player’s…
I already replied to someone asking the same thing, hope this helps