Unity instancier avec nom

// (You don't need to instantiate an additional object, just set the 'name' attribute)
GameObject go = Instantiate(this.speedBlock);
go.name = "SpeedBlock";
Jesus