ghiwar

Auto add friends from group

Dec 9th, 2023
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Ambil semua elemen dengan class yang diberikan
  2. var buttons = document.querySelectorAll('.x193iq5w.xeuugli.x13faqbe.x1vvkbs.x1xmvt09.x1lliihq.x1s928wv.xhkezso.x1gmr53x.x1cpjm7i.x1fgarty.x1943h6x.xudqn12.x3x7a5m.x6prxxf.xvq8zen.x1s688f.x1dem4cn');
  3.  
  4. // Fungsi untuk menghasilkan angka acak antara min dan max (inklusif)
  5. function getRandomInt(min, max) {
  6.   return Math.floor(Math.random() * (max - min + 1)) + min;
  7. }
  8.  
  9. // Fungsi untuk mengklik tombol secara bergantian dengan jeda acak antara 1-8 detik
  10. function clickButtonsSequentially() {
  11.   var index = 0;
  12.  
  13.   function clickNextButton() {
  14.     if (index < buttons.length) {
  15.       buttons[index].click();
  16.       index++;
  17.       var randomDelay = getRandomInt(1000, 8000); // Jeda acak antara 1-8 detik
  18.       setTimeout(clickNextButton, randomDelay);
  19.     }
  20.   }
  21.  
  22.   clickNextButton();
  23. }
  24.  
  25. // Panggil fungsi untuk memulai pengklikan tombol secara bergantian
  26. clickButtonsSequentially();
Add Comment
Please, Sign In to add comment