So, this rather doesn't require me to post any code, since I know nothing about this subject.
I searched many sources but none worked. So to my problem:
I want to disable the control of a player (only 1 player), but not completely. The player still needs to be able to move by script so I can't anchor any parts of the player. Also, I can't disable ControlScript in PlayerScripts because it is for a cutscene, and when I re-enable it, the player starts moving toward a position I set him to move to during the cutscene.
So how exactly can I do this? Help is HIGHLY appreciated!
There are many methods to do this.
The way I would personally do it to control 1 player is to make a LocalScript in PlayerStarterScripts that activates when an event (beginning of cutscene) is fired. You would anchor LocalPlayer.Character.Humanoid during the time you are doing the cutscene, then use CFrame and PrimaryPart to use the character itself.
That's my method, though.