I have tried so many things and nothing is working. The error I receive is ```
NullReferenceException: Do not create your own module instances, get them from a ParticleSystem instance
UnityEngine.ParticleSystem+MainModule.set_startColor (UnityEngine.ParticleSystem+MinMaxGradient value) (at :0)
```csharp
// Text colour is configured through the editor.
public Color textColor;
public GameObject burst;
public ParticleSystem ps;
private Vector2 newLocation;
private void EmitParticles()
{
var ma = ps.main;
newLocation = m_textComponent.gameObject.transform.GetChild(0).transform.position;
ma.startColor = new ParticleSystem.MinMaxGradient(textColor, Color.black);
Instantiate(ps, newLocation, transform.rotation);
}