Disabled script affecting game

For whatever, reason, my custom movement system won’t work unless there’s this certain script in StartPlayerScripts.
The thing is, this script is already disabled on the get-go, I see no reason why it should be affecting the player?

https://gyazo.com/294c0e511053b4d1d8da70cffb99691f
local script disabled but in StartPlayerScripts.

https://gyazo.com/94809f8c8db45ac659b7f24731dad8c0
local script either deleted or moved somewhere else while still disabled.

Probably because of this:
https://developer.roblox.com/en-us/api-reference/class/StarterPlayerScripts

  • When a game is run, this object will also house the default multi-platform Roblox control scripts for the camera and character. If LocalScripts named “CameraScript” or “ControlScript” are placed within this folder, they will replace the Roblox defaults for those scripts respectively. You can add empty LocalScripts for each of these to simply disable them altogether. This is useful for games that do not follow the usual control paradigms of a 3rd person game.