Disabling Climbing

I’m making a horror/survival game, and I have a very well-modelled lobby. However, there’s some places where you can climb on, such as low-height tables, cabinets and broken ladders.

I want to find a way how to completely disable, or remove, the ability to climb.

If you have any suggestions or solutions, you can comment them down below. Thank you.

2 Likes

You can’t exactly remove the Player’s ability to climb. The only thing you could do would be to add invisible parts to deter users from climbing objects.

I don’t want to use barriers. The reason is… complicated.

The only thing I can think of is to alter the Player’s HipHeight, but it could also make the Player’s appearance look undesirable.

There aren’t much options I can think of though, so it’s either this or adding invisible barriers.

Let’s see what other people think.

There’s a simple method for this. You can use the SetStateEnabled method of Humanoids. Documentation: Humanoid | Documentation - Roblox Creator Hub

Example:

Humanoid:SetStateEnabled(Enum.HumanoidStateType.Climbing, false)
9 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.