How To Remove Item From The Starter Pack

As the title states, how do I remove a tool from the staterpack through a script? In my game, players are able to gain new tools. However if they die, the default tool that you get(in starter pack) appears in your backpack

You can connect a Humanoid.Died event with a for loop to remove tools from Starter Pack when they die. You should account for other factors in you game, such as maybe a new player gets the default Starterpack tools and so when they die, you still want them to have the default tool. In this case, you should account for if they have a certain amount of tools, or by other filters.

Use a for loop, loop through the children of StarterPack and if the child is a tool, destroy it, locally.

2 Likes

Why would you want to use the starterpack if your going to remove the items when they die???

2 Likes