I've been searching the wiki and tutorials, but I cannot find anywhere how to make the local player walk a path or to a vector without using the keyboard. How would I go about doing this? I know the "MoveTo" function is for NPCs, but this is similar to what I want the local player to do.
It is really easy! There is a property in the Humanoid called WalkToPoint. If you change this value through a serverscript, the player will walk in a straight line to that point.
Example:
character = game.Workspace:WaitForChild("rabbi99") function walktopoint(position) character.Humanoid.WalkToPoint = position end walktopoint(Vector3.new(--Your desired position here))