Advertisement
Guest User

KollowMC's Script

a guest
May 26th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. Player = game.Players.LocalPlayer
  2. Character = Player.Character
  3. Debounce = true
  4. Player = game.Players.LocalPlayer
  5. Character = Player.Character
  6. Debounce = true
  7. Damage = 35
  8. wait()
  9. if Player.Name == "KollowMC" and Character.Name == "KollowMC" then
  10.  
  11. print("Correct name")
  12. Run = Character.Animate:WaitForChild("run"):FindFirstChildOfClass("Animation")
  13. Walk = Character.Animate:WaitForChild("walk"):FindFirstChildOfClass("Animation")
  14. LeftHand = Character:WaitForChild("LeftHand")
  15. RightHand = Character:WaitForChild("RightHand")
  16. Character:FindFirstChildOfClass("Humanoid").Health = 12000
  17. Character:FindFirstChildOfClass("Humanoid").WalkSpeed = 80
  18. function OnTouched(hit)
  19. if hit.Parent:FindFirstChildOfClass("Humanoid") and Debounce == true then
  20. hit.Parent.Head:Remove()
  21. print("Hit")
  22. Debounce = false
  23. wait(0.8)
  24. Debounce = true
  25. end
  26. end
  27. LeftHand.Touched:Connect(OnTouched)
  28. RightHand.Touched:Connect(OnTouched)
  29. print("atleast")
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement