Advertisement
Anukun_Lucifer

ToolScript

Jan 12th, 2023
1,061
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | Source Code | 0 0
  1. local replicated = game:GetService("ReplicatedStorage")
  2. local tool = replicated:FindFirstChild("SwordFF")
  3.  
  4. local button = script.Parent
  5.  
  6. button.MouseButton1Click:Connect(function()
  7.     if tool then
  8.         local newTool = tool:Clone()
  9.         newTool.Parent = game.Players.LocalPlayer.Backpack
  10.  
  11.     end
  12. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement