Skip to content

Instantly share code, notes, and snippets.

@mcnole25
Created August 1, 2025 01:11
Show Gist options
  • Save mcnole25/d8db7207abe0655fdf34ec1a26d08fb6 to your computer and use it in GitHub Desktop.
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.
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