Advertisement
memberhero

Banhammer script by basstracker1970

Dec 12th, 2017
1,329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. --Ban hammer script by basstracker1970
  2. print("BAN!")
  3. Humanoid = game.Players.LocalPlayer.Character.Humanoid
  4. Player = game.Players.LocalPlayer
  5. tool = Instance.new("Tool")
  6. tool.Name = "BAN!"
  7. tool.Parent = game.Players.LocalPlayer.Backpack
  8. handle = Instance.new("Part")
  9. handle.Name = "Handle"
  10. handle.Parent = tool
  11. Animation = Instance.new("Animation")
  12. Animation.AnimationId = "rbxassetid://32659706"
  13. Animation.Name = "AnAnimation"
  14. Animation.Parent = tool
  15. mesh = Instance.new("SpecialMesh")
  16. mesh.Scale = Vector3.new(0.5, 0.5, 0.5)
  17. mesh.MeshId = "rbxassetid://10604848"
  18. mesh.TextureId = "rbxassetid://10605252"
  19. mesh.Parent = handle
  20. Humanoid.WalkSpeed = 80
  21. tool.Equipped:connect(function()
  22. ban = Instance.new("Sound")
  23. ban.SoundId = "rbxassetid://147722910"
  24. ban.Parent = handle
  25. ban:Play()
  26. tool.Activated:connect(function()
  27. ban2 = Instance.new("Sound")
  28. ban2.SoundId = "rbxassetid://147722910"
  29. ban2.Parent = handle
  30. ban2:Play()
  31. local animtrack = Player.Character.Humanoid:LoadAnimation(Animation)
  32. animtrack:Play()
  33. handle.Touched:connect(function(ban3)
  34. ban3:Remove()
  35. end)
  36. end)
  37. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement