I want to force a character to walk to a certain point. What is the best method?

I want to walk a player character to a specific point. So far I’ve been using the MoveTo method to do this, however whenever a player pressed wasd or the arrow keys (aka basic movement events) it breaks them out of the MoveTo method. Am I doing something wrong? What is the best way to do this?

I’d take a look at this thread How to Disable Player Movement, although I’m not for sure it’s what you need. MoveTo isn’t really the problem, sounds like you just need to work out disabling movement.

1 Like

Are you saying that you disabled the control script built-in to the character, so they cannot move when they press WASD? However, even if they tap one of those keys, it breaks the script that you made that moves them (they don’t move regardless)?

Or, not! You figured it out.

1 Like

Haha yeah, I just forgot disabling player controls was an option. Thanks guys!

1 Like