Scripts

Share and discover scripts for LiquidBounce

1.0k Topics 9.1k Posts
  • NCPBhop

    8
    1 Votes
    8 Posts
    1k Views

    @yorik100 geometry dash said in NCPBhop:

    @Guiwow Idk try it

    OK

  • MatrixBotRemover

    13
    0 Votes
    13 Posts
    833 Views
  • Jump on slime script

    2
    0 Votes
    2 Posts
    285 Views

    @applecode

    //requires core onJump: function(e) { if (BlockUtils.getBlock(new BlockPos(mc.thePlayer).down(1)) != Blocks.slime_block) e.cancelEvent(); } What is core?
  • 0 Votes
    2 Posts
    332 Views

    @plumer-man dont works on verus men....

  • This topic is deleted!

    Solved
    3
    0 Votes
    3 Posts
    10 Views
  • VScode Intilsense plugin?

    5
    0 Votes
    5 Posts
    313 Views

    i use vscoduim its just easier to say vscode

  • SwitchNoFall (BetterNoFall recode)

    19
    7 Votes
    19 Posts
    3k Views

    good work

  • 0 Votes
    12 Posts
    401 Views

    @尝试绕hyt pls try learn kotlin or java first

  • This topic is deleted!

    4
    0 Votes
    4 Posts
    116 Views
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • sigma font (very sexy)

    32
    0 Votes
    32 Posts
    2k Views

    I can't find the font

  • BowDamage (Works with rod too)

    13
    1 Votes
    13 Posts
    525 Views

    @fakepex Yeah I mistyped.

  • 0 Votes
    21 Posts
    1k Views

    @notautismatall How do i make this code into a script that the client can work with?

  • 0 Votes
    11 Posts
    715 Views

    @yorik100

    add

    entities.ticksExisted > anything higher than 6 i think

    to make sure it isnt hitting fireballs you fired, ofc it wont hit fireballs fired in the range of 5.5 blocks by enemys bc they also have a lower existed tickrate but then you cant really counter fireballs anyways.

    -> so: prevent changing your own fireballs direction with this, happened to me before, not a strong direction change but still one

  • This topic is deleted!

    30
    1 Votes
    30 Posts
    2k Views
  • hypixel damage

    16
    0 Votes
    16 Posts
    872 Views

    @fakepex I don't think so.

  • 0 Votes
    18 Posts
    369 Views

    @btx-0 YYou can actually skip the potion effect as its only visual

  • Matrix antibot for FDP?

    6
    0 Votes
    6 Posts
    508 Views

    Why is everyone using FDP?

  • [Script] AutoSex Script

    9
    0 Votes
    9 Posts
    645 Views
  • How do you damage yourself?

    42
    0 Votes
    42 Posts
    761 Views

    Example script

    /// api_version=2 var script = registerScript({ name: "ExapmleScript", version: "1.0", authors: ["As丶One"] }); script.on("enable", function () {}); script.on("disable", function () {}); script.on("load", function () {}); script.registerModule({ name: "ExapmleModule", description: "ExapmleModule By As丶One", category: "Fun", tag: "I am a tag", settings: { Boolean: Setting.boolean({ name: "BooleanValue", default: true }), Integer: Setting.integer({ name: "IntegerValue", default: 5, min: 0, max: 10 }), Float: Setting.float({ name: "FloatValue", default: 3.24, min: 0.01, max: 6.25 }), Text: Setting.text({ name: "TextValue", default: "TextValue" }), Block: Setting.block({ name: "BlockValue", default: 26 }), List: Setting.list({ name: "ListValue", values: ["Hi", "Hello"], default: "Hello" }) } }, function (module) { module.on("enable", function () { module.settings.Text.set("Hi,I am enabled") module.tag = "Enabled" chat.print(module.settings.Text.get()) }); module.on("disable", function () { module.settings.Text.set("Hi,I am disabled") module.tag = "Disabled" chat.print(module.settings.Text.get()) }); module.on("update", function () {}); module.on("motion", function (event) { var eventState = event.getEventState() }); module.on("render2D", function (event) { var partialTicks = event.getPartialTicks() }); module.on("render3D", function (event) { var partialTicks = event.getPartialTicks() }); module.on("packet", function (event) { //event.cancelEvent() //event.isCancelled() var packet = event.getPacket() }); module.on("jump", function (event) { /* event.cancelEvent() event.isCancelled() var motion = event.getMotion() event.setMotion(0.42) */ }); module.on("attack", function (event) { var targetEntity = event.getTargetEntity() }); module.on("key", function (event) { var pressedKey = event.getKey() }); module.on("move", function (event) { /* var x = event.getX() var y = event.getY() var z = event.getZ() var isSafeWalk = event.isSafeWalk() event.setX(0) event.setY(0) event.setZ(0) event.setSafeWalk(true) event.zero() event.zeroXZ() event.cancelEvent() */ }); module.on("step", function (event) { var stepHeight = event.getStepHeight() }); module.on("stepConfirm", function () {}); module.on("world", function (event) { var worldClient = event.getWorldClient() }); module.on("session", function (event) {}); module.on("clickBlock", function (event) { var clickedBlock = event.getClickedBlock(); var enumFacing = event.getEnumFacing() }); module.on("strafe", function (event) { var strafe = event.getStrafe(); var forward = event.getForward(); var friction = event.getFriction(); //event.cancelEvent() }); module.on("slowDown", function (event) { var strafe = event.getStrafe(); var forward = event.getForward(); //event.setForward(1); //event.setStrafe(1); }); });