How to prevent mobs from going on top of your character

Hello guys

I have an issue here, I made a mob but he keeps climbing on top of me.
How do I avoid that?

image

Maybe try to disable the HumanoidStateType of “Climbing”

local Npc = workspace.Npc --Change this to match the directory of where your npc is located

Npc.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Climbing, false)

2 Likes

It worked, thank you so much for helping :blush:

1 Like