AnimeHackz21

FB

May 29th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. Player = game.Players.LocalPlayer
  2. Character = Player.Character
  3. Mouse = Player:GetMouse()
  4.  
  5. RightShoulder = Player.Character.Torso["Right Shoulder"]
  6.  
  7. Mouse.KeyDown:connect(function(key)
  8. key = key:lower()
  9. if key == "q" then
  10. local Anim = Instance.new("Animation")
  11. Anim.AnimationId = "rbxassetid://843079631"
  12. PlayAnim = Character.Humanoid:LoadAnimation(Anim)
  13. PlayAnim:Play()
  14. end
  15. end)
Add Comment
Please, Sign In to add comment