Make a Simple AutoClicker with Java

Published: 04 February 2020
on channel: vrus
6,107
102

Make an auto clicker with java in 7 lines of code.

Links:
Java IDE:
https://www.jetbrains.com/idea/
Java JDK: https://www.oracle.com/technetwork/ja...

code to copy&paste:

import java.awt.*;
import java.awt.event.InputEvent;

public class Main {

public static void main(String[] args) throws Exception{
Robot robot = new Robot();
robot.delay(1000);
while(true){
robot.mousePress(InputEvent.BUTTON1_MASK);
robot.delay(1000);
robot.mouseRelease(InputEvent.BUTTON1_MASK);
}
}
}


On this page of the site you can watch the video online Make a Simple AutoClicker with Java with a duration of hours minute second in good quality, which was uploaded by the user vrus 04 February 2020, share the link with friends and acquaintances, this video has already been watched 6,107 times on youtube and it was liked by 102 viewers. Enjoy your viewing!