ToKeiChun

Instagram Auto Follower

Aug 8th, 2022
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // navigate to https://www.instagram.com/explore/people/suggested/ in your browser on your computer. This goes without saying, but you'll need to be signed into your Intagram account
  2. // copy the javascript code in followBot.js and paste it into the javascript console (you can open this in google chrome with command + option + j
  3. // click enter
  4. // watch the bot click the follow button for you. it will only follow up to 30 people at a time so your account doesn't get flagged
  5. // if you wanna risk it, keep repating the steps above - WARNING: you can only follow/unfollow about 20 - 60 users an hour, and a maximum of 100-200 users in a day AND Instagram does not allow anyone to follow more than 7,500 people. Instagram will just prevent you from hitting the follow button if you do too many in a short period of time, so you're generally safe using this.
  6.  
  7. (() => {
  8.     let i = 0;
  9.     const followInterval = setInterval(() => {
  10.         if (i >= 30) clearInterval(followInterval);
  11.         const buttons = document.querySelectorAll('button');
  12.         const nextButton = buttons[i];
  13.         if (nextButton.textContent.toLowerCase() === 'follow') { // write in your language
  14.             nextButton.click();
  15.         }
  16.         i++;
  17.     }, 500)
  18. })()
  19.  
Add Comment
Please, Sign In to add comment