Advertisement
artucox7

SlapMyHand

Aug 6th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. --Slap My Hand!!
  2.  
  3. --script maked by artucox7
  4.  
  5. --commands
  6.  
  7. --e for talk:Slap My Hand!!
  8.  
  9. -------------------------------------------------------
  10. local plr = game.Players.LocalPlayer
  11. local chara = game.Players.LocalPlayer.Character
  12. local hum = chara.Humanoid
  13. local sound1 = Instance.new("Sound", chara.Head)
  14. local Animate = Instance.new("Animation")
  15.  
  16. sound1.SoundId = "rbxassetid://887591869"
  17. Animate.AnimationId = "rbxassetid://2181111862"
  18.  
  19. function clicked(Key)
  20. if Key == "e" then
  21. local anim = hum:LoadAnimation(Animate)
  22. sound1:Play()
  23. anim:Play()
  24. end
  25. end
  26. game.Players.LocalPlayer:GetMouse().keyDown:connect(clicked)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement