Currently this VVV makes the Enemys move upwards but I want them to move downwards.
using UnityEngine;
using System.Collections;
public class EnemyMovement : MonoBehaviour
{
public GameObject Enemy;
void Update ()
{
transform.Translate(Enemy.transform.up * Time.deltaTime);
}
}