[SUPPORT] Will this script work?
-
Would this script work?
var scriptName = "AntiKnockback"; var scriptVersion = 1.0; var scriptAuthor = "Skid"; var AACv4Velocity = new AACv4Velocity(); var Client; function AACv4Velocity() { this.getName = function() { return "AntiKnockback"; }; this.getDescription = function() { return "Redesky velocity."; }; this.getTag = function() { return "AntiKnockback"; }; this.getCategory = function() { return "Fun"; }; this.onUpdate = function() { if(mc.thePlayer.hurtTime > 0 && mc.thePlayer.hurtTime <= 10) { mc.thePlayer.motionY *= 0.08; mc.thePlayer.motionZ *= 0.08; mc.thePlayer.motionX *= 0.08; } } } function onLoad() { }; function onEnable() { exampleModuleClient = moduleManager.registerModule(AACv4Velocity); }; function onDisable() { moduleManager.unregisterModule(Client); }
-
use packets bruh