Hello! I was just wondering if anyone could help me out on this one, I don't think there's a property in the actual tool or the players Backpack, I'm pretty sure this would have to be a script. And that's all I know! Thanks, -Tyler :D
In the script where you put the sword in the backpack, add a line that puts it in the player's StarterGear. As an example, I will give the player a sword that is in ReplicatedStorage when they join the game. The sword will stay with them forever.
1 | game.Players.PlayerAdded:Connect( function (plr) |
2 | local sword = game.ReplicatedStorage:WaitForChild( "Sword" ):Clone() --clone the sword |
3 | sword.Parent = plr.Backpack --put the cloned sword in the player's inventory |
4 | sowrd:Clone().Parent = plr.StarterGear --put a clone of the cloned sword into the player's StarterGear so that it stays in the player's inventory even after death. |
5 | end ) |
For my example it is better just to put it in StarterPack, but if you want to script it, it is the same (I think that sentence makes sense).
I hope this answers your question.
Parent the tools to their StarterGear
StarterGear is a folder located within the Player. This is different to StarterPack where all Players will receive the tools.