Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. player = game.Players.firefight101
  2. mouse = player:GetMouse()
  3.  
  4. function KeyD(key)
  5. key = key:lower()
  6. if key == "f" then
  7. local anim = Instance.new("Animation")
  8. anim.AnimationId = "rbxassetid://919512313"
  9. local pee = player.Character.Humanoid:LoadAnimation(anim)
  10. pee:Play()
  11. end
  12. end
  13.  
  14. mouse.KeyDown:connect(KeyD)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement