Getting acces to a script instance from a GameObject

He let us say that i have a GameObject in Unity and i associated an script to this object called Mover.cs in which i defined some properties can i access through the GameObject the instance of Mover associated to it?

If I understand your question correctly then yes.

If you have your Mover.cs script on a GameObject as the component, and you want to access that instance from elsewhere:

Mover moverscript = GameObject.Find ("NameOfYourGameObject").GetComponent<Mover>();

Then you can access the members inside that script(as long as they are public) e.g:

moverscript.move();

There are many ways to get gameobjects and their components(which is an associated instance when talking about scripts) but this is one of the most simple ones.

If you always need an Audio Source in your scenes, create a initScene, place a GameObject there, and attach a SoundConroller Script to it with all necessary AudioSources (eg. Background Music and SpecialEffects).

Set this Audio Controller as a singleton, and tell on a script DontDestroyOnLoad(GameObject);
this way the EmptyGameObject with the Audio COntroller will exists in all scenes, and you can grab the audiosource you need over a getter setter system and replace the audio file, and tell audioSource.play();

this way you only have two sources which you can address, and you can be sure that they are existing, because they will stay over the whole gameclient in all scenes.

Greetings