wo ive seen solutions for this saying to set the walkspeed to 0 but I need to disable WASD keys and still be able to move. please help! click and go script below
01 | --[[ |
02 |
03 | [ THIS WAS INSPIRED BY STICKMASTERLUKE'S NATURAL DISASTERS ] |
04 | ]] |
05 |
06 |
07 | Player = game.Players.LocalPlayer |
08 | Mouse = Player:GetMouse() |
09 |
10 | Mouse.Button 1 Down:connect( function () |
11 | if Mouse.Target then |
12 | if (Mouse.Hit.p - Player.Character.Torso.Position).magnitude < = 30 then |
13 | Player.Character.Humanoid:MoveTo(Mouse.Hit.p,Mouse.Target) |
14 | end |
15 | end |
16 | end ) |
I think you mean you are trying to enable "Click to Move" as the only way to walk around. This is simple.
In the Explorer, click on:
StarterPlayer
Then, under the "Controls" tab, click the "DevComputerMovementMode" option and set it to "Click to Move"
https://gyazo.com/7ea172a5a0019974bdc347b09a3bcbb6
If this helped, please** upvote and accept**!