Any easy way to remove control of a character so I can have them move using WalkToPoint without player resistance?
2 Likes
local player = game.Players.LocalPlayer;
local MasterControl = require(player.PlayerScripts:WaitForChild("ControlScript"):WaitForChild("MasterControl"));
repeat wait() until MasterControl.ControlState;
MasterControl:Disable();
14 Likes