5b but everytime you jumps, the blocks switch
by glorious_driver20972
16 0
Unknown Unknown
28th August 2026

Description

//paste this in devtools console! (function () { const orijmp = Character.prototype.jump; Character.prototype.jump = function (jumpPower) { const result = orijmp.call(this, jumpPower); for (let j = 0; j < switchable.length; j++) { if (switchable[j] && switchable[j].length > 0) { leverSwitch(j); } } return result; }; })();