Advertisement
-----------------

ara~ara tool

Dec 16th, 2021 (edited)
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. local tool = Instance.new("Tool", owner.Backpack)
  2. local handle = Instance.new("Part", tool)
  3. local sound = Instance.new("Sound", handle)
  4.  
  5. tool.Name = "Ara~Ara"
  6. handle.Name = "Handle"
  7. handle.Size = Vector3.new(1,1,1)
  8. sound.SoundId = "rbxassetid://6401094395"
  9. sound.Volume = "10"
  10.  
  11. tool.Activated:Connect(function()
  12. sound:Play()
  13. end)
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement