Absolute Button Simulator 2
Posted June 5, 2023. Updated June 9, 2023. Played 4851 times for a total of 6688 hours.
description
A clicky button game! With lots of buttons! Inspired by the Roblox button simulator trend.
latest update
v0.2.2 June 9, 2023
-Added world 3 (Sky world)
-Added infernal
-You can now click and drag to buy buttons as you hover over them
-Leveling up alert has been replaced with a "+1" icon over the crates tab
-Patterns now have a "rarity value"
-You can now use A and D to move worlds
-Modified some crate rarities
-Fixed some visual issues













newest comments
top comments
// Set auto = !auto to enable/disable script.
// To run script, open original, open console with f12, and paste/enter this whole comment.
function maxBuyableMulti() {
if (game.money < 5) { return 0; }
var i = 0;
while (i < 26 && multiPrices[i + 1] < game.money) {
i += 1;
}
return i;
}
function autoBuyMulti() {
buyButton(1, maxBuyableMulti());
}
var auto = setInterval(autoBuyMulti, 333);