Disable certain scripts when input is tapped

Hi
I’m about to ask for a lot, but I have tried already (I had a script but I deleted it to get rid of an error).

I need a script that disables the scripts Aim Camera / MouseLook / Switch Shoulders / Switch Weapons / and CharacterControler (or whatever script makes the FPS character move) whenever the input ‘Pause’ (That’s the actual name of the input) is toggled.

Thanks!

Something like this?

void Update()
{
    if ( Input.GetButtonDown("Pause") )
    {
        characterController.enabled = !characterController.enabled;
        // etc....
    }
}