Advertisement
Guest User

KollowMC's Script

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