CCBlueX Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups

    [SCRIPT] Jetpack+ Module

    Scripts
    6
    9
    247
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Founder
      Founder last edited by

      A jetpack module similar to the ones used on bedrock edition clients. Once enabled, it moves your player to where you are facing. Speed is customization (a float from 1.0 to 9.0) and having it set as a bind is recommended. Created by me

      var script = registerScript({
          name: "Jetpack+",
          version: "1.0.0",
          authors: ["HNU Founder"]
      });
      script.registerModule({
          name: "Jetpack+",
          category: "Movement", // Movement, Misc, Combat, Fun, Player, Exploit, World, Render
          description: "A better Jetpack module for LiquidBounce created by Founder",
          settings: {
              speedSetting: Setting.float({
                  name: "Jetpack+ Speed",
                  default: 2.0,
                  min: 1.0,
                  max: 9.0
              })
          }
      }, function (module) {
          module.on("update", function() {
      var calcYaw = (mc.thePlayer.rotationYaw + 90.0) * (Math.PI/180.0);
      var calcPitch = (mc.thePlayer.rotationPitch) * -(Math.PI/180.0);
      
              mc.thePlayer.motionX = parseFloat(Math.cos(calcYaw) * Math.cos(calcPitch) * module.settings.speedSetting.get());
              mc.thePlayer.motionY = parseFloat(Math.sin(calcPitch) * module.settings.speedSetting.get());
              mc.thePlayer.motionZ = parseFloat(Math.sin(calcYaw) * Math.cos(calcPitch) * module.settings.speedSetting.get());
              mc.thePlayer.setSprinting(true);
          });
      
      });
      

      Download Script: [Jetpack+ LB.js]

      (/assets/uploads/files/1598973416479-jetpack-lb.js)
      Module and Setting

      1 Reply Last reply Reply Quote 1
      • ChocoPie_isme
        ChocoPie_isme Banned last edited by

        This post is deleted!
        1 Reply Last reply Reply Quote 0
        • M
          mems Moderator last edited by

          oh come on, give respect to every scripter, it's not easy to make scripts

          1 Reply Last reply Reply Quote 0
          • ChocoPie_isme
            ChocoPie_isme Banned last edited by

            1. Im sure that it only bypasses vanilla
            2. It will go up even if you don't press the jump key
            Founder 1 Reply Last reply Reply Quote 0
            • Founder
              Founder @ChocoPie_isme last edited by

              @ChocoPie_isme It wasn't made to bypass

              1 Reply Last reply Reply Quote 0
              • ChocoPie_isme
                ChocoPie_isme Banned last edited by

                ok so add the key jump check it would be good

                1 Reply Last reply Reply Quote 0
                • 6Sence
                  6Sence last edited by

                  Good job founder

                  1 Reply Last reply Reply Quote 0
                  • yorik100
                    yorik100 last edited by yorik100

                    Really good to simulate 1.16 swimming, I was searching for that

                    exit scammed 1 Reply Last reply Reply Quote 0
                    • exit scammed
                      exit scammed @yorik100 last edited by

                      @yorik100 wat

                      1 Reply Last reply Reply Quote 0
                      • First post
                        Last post
                      About
                      • Terms of Service
                      • Privacy Policy
                      • Status
                      • Contact Us
                      Downloads
                      • Releases
                      • Source code
                      • License
                      Docs
                      • Tutorials
                      • CustomHUD
                      • AutoSettings
                      • ScriptAPI
                      Community
                      • Forum
                      • Guilded
                      • YouTube
                      • Twitter
                      • D.Tube