local plr = game.Players.LocalPlayer
local Controls = require(plr.PlayerScripts.PlayerModule):GetControls()
Controls:Disable()
Controls:Enable()
If run this script, everything will be okay.
But add disabled scripts, and the character can no longer move.
local plr = game.Players.LocalPlayer
local Controls = require(plr.PlayerScripts.PlayerModule):GetControls()
Controls:Disable()
Controls:Enable()
script.Disabled = true
I have a script where the player’s camera moves from point A to point B, and this move is needed only on the first start (transition from the lobby to the character)
For this reason, after moving the camera, I want to disable the script (or delete it), because it is no longer needed.