How to override walk

Hello,
I want to make a player walk to a certain point using MoveTo but they can just resist and they won’t end up at that certain point if they do so how would I make them not being able to resist
- Br, iSyriux

1 Like

You could do this to disable all the controls:

local controls = require(game:GetService("Players").LocalPlayer.PlayerScripts.PlayerModule):GetControls()
controls:Disable()

Hello,
That would disable other necessary controls like chat or menu

I tried it and I don’t think it disabled.