#pragma strict
function Update ()
{
if (Input.GetKey (“w”) )
{
transform.Translate (0, 20 * Time.deltaTime,0);
}
if (Input.GetKey (“s”) )
{
__transform.Translate (0, -20 * Time.deltaTime,0); __
)
}
it keeps saying i need a semicolon on the end of the line highlighted in bold when there is one there
screeshot attached