I start with a sword in game, when I die, I lose my sword forever? Message me if you need more details.
player = game.Players.LocalPlayer weapon = player.Backpack.Weapon --or wherever your weapon is located player.CharacterAdded:connect(function(character) local hum = character:FindFirstChild("Humanoid") hum.Died:connect(function() local newWeapon = weapon:Clone() wait(5) newWeapon.Parent = player.Backpack end) end)
Closed as Not Constructive by Sublimus and BlackJPI
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?