AustnBlox
(Austin)
October 31, 2020, 10:56pm
#1
Hi everyone,
How would I make Tools save without using folders to store them into? Here is a image of what I’m talking about: These tools are in ReplicatedStorage
Like what coding do I need to save these tools?
How would I make all those tools save without storing them into folders?
Kaid3n22
(Kaiden)
October 31, 2020, 11:18pm
#2
What exactly are you trying to save about the tools? (Names, etc)
AustnBlox
(Austin)
October 31, 2020, 11:27pm
#3
I’m just trying to save them in the players backpack
xKaihatsu
(xKaihatsu)
October 31, 2020, 11:33pm
#4
Save the values as strings, then when the player joins you can simply do something like,
local tool = ReplicatedStorage[savedToolName]:Clone()
tool.Parent = player.Backpack
There are tutorials on this, which I sent in a private message but you removed yourself immediately.
ib_ppa
(boppa)
November 1, 2020, 2:34am
#5
If you want to save and load tools into the player’s inventory upon joining, you’ll have to make use of DataStores . I suggest doing some research on the more reliable DataStore2 module. It’ll help you a lot with your future game dev endeavors, as well as your current one.