Hold left mouse button xD
-
I need a script where the left mouse button is held down and an autowalk has a problem with the autowalk of liquid
-
@joel-kek
it should be something like thismc.gamesettings.keybindattack.pressed = true;
-
@plumer-man I dont really know how to use it as a script
-
@joel-kek learn how to make a script with the docs on liquidbounce.net
-
// 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); };