startScript re-entrancy has exceeded 3?
I'm making an eye that is supposed to pulsate, however, I keep getting this error. It's really weird, as I've never seen it before.
Script;
01 | local eye = script.Parent:Clone() |
02 | eye.Parent = workspace [ "Wisdom Fate Gauntlet" ] |
03 | spawn( function () while wait() do |
05 | eye.eyeMesh.Scale = Vector 3. new( 0.35 , 0.35 , 0.35 ) |
10 | eye.eyeMesh.Scale = eye.eyeMesh.Scale + Vector 3. new( 0.01 , 0.01 , 0.01 ) |
11 | eye.Transparency = eye.Transparency + 0.1 |
I've read upon it and they say it has something with too many clones, but there's no loop or anything causing too many..?