Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. local held = false
  2. local function triggerBot()
  3. print("DIIIIICKS")
  4. if held then
  5. local tr = LocalPlayer():GetEyeTrace()
  6.  
  7. if IsValid(tr.Entity) then
  8. if ( tr.Entity:IsPlayer() and tr.Entity:Alive() ) then
  9. print("pew")
  10. end
  11. end
  12. end
  13. end
  14.  
  15. hook.Add("Think", "Shoosting", triggerBot)
  16.  
  17. concommand.Add("+triggerbot", function()
  18. held = true
  19. end)
  20. concommand.Add("-triggerbot", function()
  21. held = false
  22. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement