Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- %Name : firegame87
- &Version : Lua 5.1
- %Script : Local
- --]]
- tool = Instance.new("Tool" , game.Players.LocalPlayer.Backpack)
- tool.Name = "Meow tool"
- tool.ToolTip = "MEOW!!!!!!!!!!!!!!! :3"
- local Handle = Instance.new("Part", tool)
- Handle.Name = "Handle"
- t = Instance.new("SelectionBox", Handle)
- t.Adornee = Handle
- Handle.Size = Vector3.new(1.3,1.3,1.3)
- Handle.BrickColor = BrickColor.Random()
- Handle.Material = "Neon"
- tool.Equipped:connect(function(mouse)
- Son = Instance.new("Sound" , game.Workspace)
- Son.SoundId = "rbxassetid://60871617"
- Son.Volume = "100"
- Son:Play()
- tool.Unequipped:connect(function(mouse)
- Son:Stop()
- Son:Remove()
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement