You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 12, 2025. It is now read-only.
privateval mode by setting("Mode", Mode.LEGIT, description ="The AntiLevitation mode")
25
25
26
26
/* Flight mode */
27
-
privateval vertical by setting("Only Vertical", false, { mode ==Mode.FLIGHT }, description ="doesn't apply extra speed when enabled")
28
-
privateval yMotion by setting("Y Motion", 0.002f, 0.0f..0.02f, 0.001f, { mode ==Mode.FLIGHT }, description ="The Y Motion that is applied when moving to bypass the anticheat")
29
-
privateval speed by setting("Speed", 0.28f, 0.15f..0.3f, 0.005f, { !vertical && mode ==Mode.FLIGHT }, description ="The speed you fly at")
30
-
privateval timer by setting("Timer Boost", true, { !vertical && mode ==Mode.FLIGHT }, description ="Use timer for a slight speed boost")
privateval yMotion by setting("Moving Motion UP", 0.002f, 0.0f..0.02f, 0.001f, { mode ==Mode.FLIGHT }, description ="The Y motion that is applied when moving horizontally to bypass the anticheat")
29
+
privateval sneakMotion by setting("Downward Motion", 0.49f, 0.0f..0.7f, 0.01f, { mode ==Mode.FLIGHT }, description ="The downward motion that is applied when pressing sneak")
30
+
privateval speed by setting("Flying Speed", 0.28f, 0.15f..0.3f, 0.005f, { !vertical && mode ==Mode.FLIGHT }, description ="The speed you fly at")
31
+
privateval timer by setting("Timer Boost", true, { !vertical && mode ==Mode.FLIGHT }, description ="Use timer for slightly faster speeds")
privateval legitYMotion by setting("Motion Up", 0.018f, 0.001f..0.1f, 0.001f, { mode ==Mode.LEGIT }, description ="The Y Motion that is applied when moving to bypass the anticheat")
35
-
privateval boost by setting("Sprint Boost", true, { mode ==Mode.LEGIT }, description ="Gives you extra motion when control is pressed")
35
+
privateval legitYMotion by setting("Legit Constant Motion UP", 0.018f, 0.001f..0.1f, 0.001f, { mode ==Mode.LEGIT }, description ="The Y motion that is applied when moving horizontally to bypass the anticheat")
36
+
privateval boost by setting("Sprint Strafe", true, { mode ==Mode.LEGIT }, description ="Removes air friction when holding sprint")
37
+
privateval legitSneakMotion by setting("Legit Sneak Motion", 0.005f, 0.001f..0.01f, 0.001f, { mode ==Mode.LEGIT }, description ="The upward motion that is applied when pressing sneak")
36
38
37
39
/* Jump motion (used by flight mode and legit mode) */
38
-
privateval jumpMotion by setting("Jump Motion", 0.099f, 0.090f..0.10f, 0.001f, { mode ==Mode.FLIGHT|| mode ==Mode.LEGIT }, description ="The Y Motion that is applied when you press space")
40
+
privateval jumpMotion by setting("Jump Motion", 0.099f, 0.090f..0.20f, 0.001f, { mode ==Mode.FLIGHT|| mode ==Mode.LEGIT }, description ="The upward motion that is applied when you press space")
0 commit comments