How do you make falling text?

Hi I wanted to make this falling text effect that is seen in the matrix for the background in my game but I’m really stumped on how to actually do this.

What I’ve tried is to make a particle system that makes the text (which isn’t really working right now), and I wanted to know is there a better way that won’t effect performance ( since I’m making for android).

Any ideas on how to do this?

Thin vertically stretched quads, all sharing the same material (a 1024x1024 grid of letters), each with a random (divisible by the letter width) mainTextureOffset.x and an animated (-= speed* Time.deltaTime) mainTextureOffset.y.

Use a vertex colored additive shader and adjust the vertex colors to make them fade in and out.

maybe go GameObject menu, Create other, 3D text, make your text, add a rigid body component and select use gravity. It works for me.

I think you should stick with particle system. Just make a sprite sheet of changing later adjust the size of the emitter color and speed variation and you done. It also your best option to keep good performance.

an alternative for text;

you can create a photo in photoshop and add it to plane. The project link is in description of video. Dont forget this is just alternative way.

Edit:
in the material menu you change the material kind to particle diffuse so it looks like real letters without background colour.