Skip to content

Instantly share code, notes, and snippets.

@ilovechubbyorangecat
ilovechubbyorangecat / autoplay.js
Created January 21, 2025 11:26
Stimulation clicker auto play
// Made by ilovechubbyorangecat
// Paste this in your browser console
const upgradeClickCounts = {};
function clickElementsForever() {
const prettyBtns = document.querySelectorAll('.main-btn.main-btn-pretty');
prettyBtns.forEach(button => button.click());
const anotherBtns = document.querySelectorAll('.another-btn');
anotherBtns.forEach(button => button.click());