@Joel-kek
// Base by Soulplexis
var scriptName = "HoldLMB";
var scriptVersion = 1.0;
var scriptAuthor = "Ali00035";
var exampleModule = new ExampleModule();
var exampleModuleClient;
function ExampleModule() {
this.getName = function() {
return "HoldLMB";
};
this.getDescription = function() {
return "Holds left mouse button";
};
this.getCategory = function() {
return "Misc";
};
this.onUpdate = function() {
mc.gameSettings.keybindAttack.pressed = true;
}
this.onDisable = function() {
}
}
function onLoad() {
};
function onEnable() {
exampleModuleClient = moduleManager.registerModule(exampleModule);
};
function onDisable() {
moduleManager.unregisterModule(exampleModuleClient);
};