Bhop
Example of a vanilla bhop module.
var script = initScript({
name: "Bhop Test",
description: "vanilla bhop",
author: "life"
})
script.onMotion(function (event) {
if (event.isPre() && player.onGround()) {
player.jump()
}
})
Last updated
Was this helpful?