<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Topics tagged with vanillafly]]></title><description><![CDATA[A list of topics that have been tagged with vanillafly]]></description><link>https://forum.liquidbounce.net/tags/vanillafly</link><generator>RSS for Node</generator><lastBuildDate>Sun, 08 Mar 2026 21:14:39 GMT</lastBuildDate><atom:link href="https://forum.liquidbounce.net/tags/vanillafly.rss" rel="self" type="application/rss+xml"/><pubDate>Invalid Date</pubDate><ttl>60</ttl><item><title><![CDATA[I need help on a fly script]]></title><description><![CDATA[//api_version=2
(script = registerScript({
name: "VerusVanillaFly",
authors: ["SomeHax"],
version: "1.0"
})).import("Core.lib");
module = {
category: "Fun",
values: [
boostMode = value.createList("BoostMode", ["None", "Static", "Gradual"], "Gradual"),
boostTicksValue = value.createInteger("BoostTicks", 20, 1, 10000),
boostMotion = value.createFloat("BoostMotion", 9, 1, 9.87)
],
onEnable: function() {
boostTicks = 0;
if (boostMode.get() != "None" &amp;&amp; mc.theWorld.getCollidingBoundingBoxes(mc.thePlayer, mc.thePlayer.getEntityBoundingBox().offset(0, 3.0001, 0).expand(0, 0, 0)).isEmpty()) {
mc.thePlayer.sendQueue.addToSendQueue(new C04PacketPlayerPosition(mc.thePlayer.posX, mc.thePlayer.posY + 3.0001, mc.thePlayer.posZ, false));
mc.thePlayer.sendQueue.addToSendQueue(new C04PacketPlayerPosition(mc.thePlayer.posX, mc.thePlayer.posY, mc.thePlayer.posZ, false));
mc.thePlayer.sendQueue.addToSendQueue(new C04PacketPlayerPosition(mc.thePlayer.posX, mc.thePlayer.posY, mc.thePlayer.posZ, true));
}
mc.thePlayer.setPosition(mc.thePlayer.posX, mc.thePlayer.posY + 0.42, mc.thePlayer.posZ);
},
onDisable: function() {
if (boostTicks &gt; 0) {
mc.thePlayer.motionX = 0;
mc.thePlayer.motionY = 0;
mc.thePlayer.motionZ = 0;
}
},
onUpdate: function() {
mc.thePlayer.motionX = 0;
mc.thePlayer.motionY = 0;
mc.thePlayer.motionZ = 0;
if (!boostTicks &amp;&amp; mc.thePlayer.hurtTime &gt; 0) {
boostTicks = boostMode.get() != "None" ? boostTicksValue.get() : 0;
}
var motion;
if (boostTicks &gt; 0) {
switch (boostMode.get()) {
case "Static":
motion = boostMotion.get();
break;
case "Gradual":
motion = boostTicks / boostTicksValue.get() * boostMotion.get();
break;
}
boostTicks--;
} else {
motion = 0.25;
}
MovementUtils.strafe(motion);
},
onPacket: function(event) {
var packet = event.getPacket();
if (packet instanceof C03PacketPlayer) {
packet.onGround = true;
}
},
onJump: function() {
mc.thePlayer.motionX = 0;
mc.thePlayer.motionY = 1;
mc.thePlayer.motionZ = 0;
}
}
]]></description><link>https://forum.liquidbounce.net/topic/2643/i-need-help-on-a-fly-script</link><guid isPermaLink="true">https://forum.liquidbounce.net/topic/2643/i-need-help-on-a-fly-script</guid><dc:creator><![CDATA[DreamWasFucked]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Is there a vanilla fly script]]></title><description><![CDATA[@skiddermaster412  thank you
]]></description><link>https://forum.liquidbounce.net/topic/2636/is-there-a-vanilla-fly-script</link><guid isPermaLink="true">https://forum.liquidbounce.net/topic/2636/is-there-a-vanilla-fly-script</guid><dc:creator><![CDATA[SomeHax]]></dc:creator><pubDate>Invalid Date</pubDate></item></channel></rss>