#My npc falling
1 messages · Page 1 of 1 (latest)
Know i added this code at the star of my npc to check if that pose is a state of the humanoid but it only says Running
local humState = humanoid:GetState(Enum.HumanoidStateType)
task.spawn(function()
while true do
wait(0.5)
print(humState)
end
end)
No idea but looks funny
Wait I know how to fix this
Hold on let me try and remember this
humanoid:SetStateEnabled(Enum.HumanoidStateType.FallingDown, false)
Set this
This will make the NPC avoid falling down.
🫡