Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. /*
  2. Made by EternalFrost
  3.  
  4. Use F to toggle Auto respawn
  5. Use Alt + P to reset score
  6.  
  7. */
  8.  
  9. let aac = !1;
  10. let aacint;
  11. document.addEventListener('keydown', function(q) {
  12. if (q.keyCode === 70) {
  13. if (aac) {
  14. aac = !1;
  15. clearInterval(aacint);
  16. input.keyUp(75);
  17. console.log('Anti Arena Closer script turned off');
  18. } else {
  19. aac = !0;
  20. aacint = setInterval(() => {
  21. input.execute('game_spawn "Anti-AC 🌞"');
  22. }, 1);
  23. console.log('Arena Closer script turned on');
  24. }
  25. }
  26. if (q.keyCode === 73) {
  27. input.execute("lb_reconnect");
  28. }
  29. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement