Scripts doesn't work on the webplayer ??

Hi

First: i’m sorry for my bad English

Second: I work so hard on my game and spent months trying to make it one of the best games on the web … unfortunately when I tried to play it on the webplayer I noticed that some scripts doesn’t work at all… and at the same time it’s work perfectly on the scene view… of course I tried to fix this problem but I couldn’t .

Please Unityers (Unity Users) help me …

The problem is

ok these are the scripts:

function Update () {
if(Input.GetKey("right")) {
transform.Translate( .6 , 0 , 0 );
}
if(Input.GetKey("left")) {
transform.Translate( -.6 , 0 , 0 );
}
}

at the same time I got this script and it’s work perfectly

function Update () {

if(Input.GetKey(“left”)) {

transform.Translate( .6 , 0 , 0 );

}

if(Input.GetKey(“right”)) {

transform.Translate( -.6 , 0 , 0 );

}

}

.
.
.This is the other script

var destination : Transform;

function OnTriggerEnter(other : Collider) {
    other.transform.position = destination.position;
}