How to make a button that gives you tool! | Roblox studio

Опубликовано: 17 Февраль 2026
на канале: CodingBacon
8,594
143

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!