Hello I am not really a “scripting person” (obviously why I am here) and I need some help trying to make text flicker. I have looked on Google but all I could find was people with this problem. I am trying to make a sign that has the text flickering with it’s light. I got the light to flicker so I thought I might as well use the same script. That was a bad idea . Please help, here’s the script
var FlashingText : MeshRenderer;
FlashingText.enabled = false;
function FixedUpdate () {
var RandomNumber = Random.value;
if(RandomNumber<=.7){
FlashingText.enabled = true;
}
else FlashingText.enabled = false;
}