BodySwing.js
-
I need this!
-
- wrong section
- what do you exactly want?
-
@end3r1355 i want a script that can make the body rotate
-
@id888999
mc.thePlayer.rotationBodyYaw = whatever angle; -
@plumer-man Scripts Js
-
@id888999 Bruh not hard to make just make on event update you rotate the body yaw my ticks existed if you want to make it short
-
if(e instanceof EventUpdate){ mc.thePlayer.rotationYawOffset = mc.thePlayer.ticksExisted; }
Its just from memory
-
@plumer-man ```
///api_version=2
(script = registerScript({
name: "ExampleScript",
authors: ["Author"],
version: "0.1",
})).import("Core.lib");
// requires core
module = {
category: "Misc",
description: "idk",
onUpdate: function () {
if (mc.thePlayer.ticksExisted >= 10) {
mc.thePlayer.rotationYawOffset = "idk"
}
},
} -
@banana1221 yes
-
(script = registerScript({ name: "ExampleScript", authors: ["Author"], version: "0.1", })).import("Core.lib"); module = { category: "Misc", description: "Rotate body.", onUpdate: function () { if (mc.thePlayer.ticksExisted > 5) { mc.thePlayer.rotationYawOffset = mc.thePlayer.ticksExisted; } }, }