1//Link:- https://github.com/danielrussellLA/instagram-follow-bot-javascript/blob/master/followBot.js
2
3// Go To "Explore Page"
4// Paste in Console:
5
6(() => {
7 let i = 0;
8 const followInterval = setInterval(() => {
9 if (i >= 30) clearInterval(followInterval);
10 const buttons = document.querySelectorAll('button');
11 const nextButton = buttons[i];
12 if (nextButton.textContent.toLowerCase() === 'follow') { // write in your language
13 nextButton.click();
14 }
15 i++;
16 }, 500)
17})()