Advertisement
FireyScripter

Meow tool

Oct 5th, 2016
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.66 KB | None | 0 0
  1. --[[
  2.     %Name : firegame87
  3.     &Version : Lua 5.1
  4.     %Script : Local
  5. --]]
  6. tool = Instance.new("Tool" , game.Players.LocalPlayer.Backpack)
  7. tool.Name = "Meow tool"
  8. tool.ToolTip = "MEOW!!!!!!!!!!!!!!! :3"
  9. local Handle = Instance.new("Part", tool)
  10. Handle.Name = "Handle"
  11. t = Instance.new("SelectionBox", Handle)
  12. t.Adornee = Handle
  13. Handle.Size = Vector3.new(1.3,1.3,1.3)
  14. Handle.BrickColor = BrickColor.Random()
  15. Handle.Material = "Neon"
  16.  
  17. tool.Equipped:connect(function(mouse)
  18. Son = Instance.new("Sound" , game.Workspace)
  19. Son.SoundId = "rbxassetid://60871617"
  20. Son.Volume = "100"
  21. Son:Play()
  22.  
  23. tool.Unequipped:connect(function(mouse)
  24. Son:Stop()
  25. Son:Remove()
  26.     end)
  27. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement