hello thanks for looking at this post. so here are the details, how do you make it to when you click a button it removes the current tools that you have in your starter pack then it clones another set from replicated storage. Thanks:)
--Example with a TextButton: local button -- type here where the button is local plr = game:GetService('Players').LocalPlayer local tool -- type here the tool that you want to replicate when the other tool is deleted button.Activated:Connect(function() plr.Backpack:FindFirstChildWhichIsA('Tool'):Destroy() local clone = tool:Clone() clone.Parent = plr.Backpack end)