Advertisement
asciiasciiascii12345

ae27ff level 23 script

Oct 1st, 2024 (edited)
118
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var con = "";
  2. for (var i = 0; i < 299000000; i++)
  3. {
  4.     document.getElementById("input").value = con + i.toString();
  5.     await new Promise(r => setTimeout(r, 3)); // Wait for the other JS to change the src
  6.     if (document.getElementById("light").src.includes("bulb_3")) { console.log("CODE: " + con + i.toString()); break; }
  7. }
  8.  
  9. // original script: https://github.com/DabMK/Ae27ff-Tips/blob/main/20-29/23.txt
  10. // use in the Devtools (right-click inspect) console
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement