So recently i have been making a swordfight game and made a Shop GUI, But whenever the player dies, the weapon is removed and you have to repurchase the item. I spent a little while figuring out what i need to do, and i came to the idea to clone an item from ServerStorage into a specific players StarterGear folder; Can anyone help with this? Feel free to explain as if i'm 5
local copy = youritem:Clone() copy.Parent = player.StarterGear -- you need to define player in your script, I'll leave that up to you, but as it is GUI there should be no problem
This should work.