Hi to all. I have a script to change the position of the first vertice of my cube:
function Update () {
// Get instantiated mesh
var mesh : Mesh = GetComponent(MeshFilter).mesh;
// Randomly change vertices
var vertices : Vector3[] = mesh.vertices;
Myvertices[0]=Vector3(0,2,0);
mesh.vertices = vertices;
mesh.RecalculateNormals();
}

The problem is that the code not works in the function Create. Only works in the Update. I need ejecute the code in Create function.
Any solution? Thanks in advance!!