Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Ban hammer script by basstracker1970
- print("BAN!")
- Humanoid = game.Players.LocalPlayer.Character.Humanoid
- Player = game.Players.LocalPlayer
- tool = Instance.new("Tool")
- tool.Name = "BAN!"
- tool.Parent = game.Players.LocalPlayer.Backpack
- handle = Instance.new("Part")
- handle.Name = "Handle"
- handle.Parent = tool
- Animation = Instance.new("Animation")
- Animation.AnimationId = "rbxassetid://32659706"
- Animation.Name = "AnAnimation"
- Animation.Parent = tool
- mesh = Instance.new("SpecialMesh")
- mesh.Scale = Vector3.new(0.5, 0.5, 0.5)
- mesh.MeshId = "rbxassetid://10604848"
- mesh.TextureId = "rbxassetid://10605252"
- mesh.Parent = handle
- Humanoid.WalkSpeed = 80
- tool.Equipped:connect(function()
- ban = Instance.new("Sound")
- ban.SoundId = "rbxassetid://147722910"
- ban.Parent = handle
- ban:Play()
- tool.Activated:connect(function()
- ban2 = Instance.new("Sound")
- ban2.SoundId = "rbxassetid://147722910"
- ban2.Parent = handle
- ban2:Play()
- local animtrack = Player.Character.Humanoid:LoadAnimation(Animation)
- animtrack:Play()
- handle.Touched:connect(function(ban3)
- ban3:Remove()
- end)
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement