Hi there,
im making a bunny hopping script where you always jump and cant do anything. I have already tried making a while true loop and then checking the Jump property on the humanoid but it doesnt work i also looked in the toolbox nothing seems to be working does anybody have a script for it that works maybe? Thank you.
1 Like
Ik this is insanely late but since im doing a fun obby game and i was looking through posts abt stuff related to it i found this so here is a code that i just made that is doing the same outcome
while wait() do
if Humanoid.FloorMaterial ~= Enum.Material.Air then
Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
end
end