How would I make it so player cannot travel up onto a block (without jumping) that is over 1 block tall?
Have you tried changing the Humanoid JumpHeight / JumpPower?
Its not about jumping, its about how much a player can walk over.
Here’s a solution without scripting:
- Make a block that’s >1 stud tall.
- Add an invisible wall on top of the block.
No its basically a game like steep steps you cannot use invisible walls.
Then here’s a solution with a little bit of scripting required:
- Detect when the player spawns in.
- Add a block that’s stuck to the character’s torso.
- Make the part tall enough that it is 1 stud off the ground.
- Make the part invisible.
Now, when the player tries to go up any block that is >1 in height, it will stop because of that block.
that will not work as the player will still be able to walk itself up the block.
No, they won’t. The block will be stopping them.
I need something I can script in not a half done solution that will fail from time to time.
Well, steep steps doesn’t use any code. They just disable players’ jumping ability. If you try it in-game, you can walk up 2 studs.
Maybe you can try to do what you’re trying to ask with raycasting?
no amount of scripting can fix this i don’t think? the reason players can climb blocks like that is because legs do not have collisions, this can be fixed in 2 ways imo. add a bodyforce downwards on the player so going up is hard and it’ll try to force them to the ground as much as possible, or add a brick to the legs and enable collisions so they can’t climb it.
Try putting the player hip height to lowest as possible.