Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. import java.awt.Robot;
  2.  
  3. public class AutoClicker
  4. {
  5.     public static void main(String args[])
  6.     {
  7.         while (true) {
  8.             try {
  9.                 Robot myBot = new Robot();
  10.  
  11.                 while(true) {
  12.                     myBot.mousePress(16);
  13.                     myBot.mouseRelease(16);
  14.                 }
  15.             } catch (Exception ex) { }
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement