Thank you guys for watching this video, if you have any questions, comment down below! don't forget to sub and like
Button script:
local tool = game.ReplicatedStorage.ClassicSword --change this to your tool name
local player = game.Players.LocalPlayer
script.Parent.MouseButton1Click:Connect(function()
local clone = tool:Clone()
clone.Parent = player.Backpack
end)
DOn't forget to put the sword into replicatedstorage!