Advertisement
Guest User

Untitled

a guest
Jul 14th, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. ITEM.Name = 'Jump boost'
  2. ITEM.Price = 2000
  3. ITEM.Model = 'models/xqm/jetengine.mdl'
  4. ITEM.SingleUse = true
  5.  
  6. function ITEM:Think(ply, modifications)
  7. if ply:KeyDown(IN_JUMP) then
  8. ply:SetVelocity(ply:GetUp() * 4)
  9. end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement