Advertisement
Guest User

Untitled

a guest
May 27th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. local bounce = false
  2. local doBounce = false
  3.  
  4. hook.Add("CreateMove", "chicken curry!", function(ucmd)
  5. if(bounce) then
  6. RunConsoleCommand(LocalPlayer():IsOnGround() and "+jump" or "-jump")
  7. doBounce = true
  8. else
  9. if doBounce then
  10. RunConsoleCommand("-jump")
  11. doBounce = false
  12. end
  13. end
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement