Created
August 1, 2025 01:11
-
-
Save mcnole25/d8db7207abe0655fdf34ec1a26d08fb6 to your computer and use it in GitHub Desktop.
This code allows you to change your walk & jump speed in the game HTML5b by Coppersalts. Inject this code in the console to enable the cheat settings.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pow = document.createElement("input"); | |
jum = document.createElement("input"); | |
pow.type = "number"; | |
jum.type = "number"; | |
pow.value = 1; | |
jum.value = 11; | |
center.appendChild(pow); | |
center.appendChild(jum); | |
setInterval(function() { | |
power = Number(pow.value); | |
jumpPower = Number(jum.value); | |
}, 1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment