You should do some research and look into previously asked questions similar to yours. There are a lot of available resources such as tutorials, devforum, etc. that you can utilise.
Here’s a tutorial by Incapaz which should help.
In this tutorial, I will show you how to save player’s inventory items.
Setup
The way I do it with storing tools, is having a folder in ServerStorage named Tools, and all my tools would go there.
[image]
A second folder would be a folder containing sub-folders, which would contain each players’ inventory.
Example of hierarchy:
[image]
The Inventories folder would start out empty, but a folder with the name of the player who joins will be created, and the tools they have will be put in the…
Furthermore,
Introduction
I have made a quick tutorial on your requested topic, so here we go!
The Gui
The first thing you will need is the gui, I have made a placeholder gui just for the sake of the tutorial and organized it in the workspace like this.
[image]
Coding
So first thing first just add a localscript into the gui and give it a name, in my case I named it “Main” and make a folder in ReplicatedStorage and name it Tools and add the tools to the folder. Now just add this code that I wrote to…