Skip to content

mistersaputra/popcat-auto-clicker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Popcat Auto Clicker

Script for auto click on popcat's website by KaptenTekno. Popcat has set a maximum limit of 800 clicks per 30 seconds (approximately 26 clicks per second) for each IP address. Exceeding this limit will result in your clicks not being counted, and you might face a 24-hour ban.

How to Use the Popcat Hack Auto Click Script

Step 1: Visit popcat.click

Firstly, open your preferred web browser and go to https://popcat.click.

Step 2: Access the Developer Console

Depending on your browser, you can access the developer console using these keyboard shortcuts:

  • Chrome: Press CTRL + SHIFT + J
  • Firefox: Press CTRL + SHIFT + K
  • Safari: Press CTRL + ALT + I
  • Opera: Press CTRL + SHIFT + I
  • Step 3: Copy and Paste the Script

Copy the script code provided below and paste it into the browser's console. Then, press Enter.

var max = 30;
var min = max - 10;
var event = new KeyboardEvent('keydown', {
   key: 'g',
   ctrlKey: true
});

let random = 0;
setInterval(function(){
   random = Math.random() * (max - min) + min;
   for (i = 0; i < random; i++) {
      document.dispatchEvent(event);
   }
}, 1000);

To stop the script, simply refresh your browser. If you wish to increase the number of clicks to 1000 per second, change the value of 'max' to 1000. However, keep in mind that this will surpass the maximum allowed clicks per second, and your clicks won't be counted.

Source

Releases

No releases published

Packages

No packages published