miz656
|
  |
| Joined: 19 Jul 2010 |
| Total Posts: 15336 |
|
|
| 01 Apr 2012 01:41 PM |
maximum event re-entrancy depth exceeded
Doesn't say no line, nothing. Just says this in red. Everything works, but I get this for some reason. Anyone know what it is? |
|
|
| Report Abuse |
|
|
MrNicNac
|
  |
| Joined: 29 Aug 2008 |
| Total Posts: 26567 |
|
|
| 01 Apr 2012 01:51 PM |
| Somewhere, an event is constantly firing itself. |
|
|
| Report Abuse |
|
|
miz656
|
  |
| Joined: 19 Jul 2010 |
| Total Posts: 15336 |
|
|
| 01 Apr 2012 02:01 PM |
| So it's firing right away before I do something to it? |
|
|
| Report Abuse |
|
|
|
| 01 Apr 2012 02:16 PM |
It's what MNN said. You probably have a code like this:
Workspace.Part.Changed:connect(function() Workspace.Part.Transparency = Workspace.Part.Transparency + 0.001 end)
And when the transparency changes, the event has to fire again and again and again. |
|
|
| Report Abuse |
|
|
miz656
|
  |
| Joined: 19 Jul 2010 |
| Total Posts: 15336 |
|
|
| 01 Apr 2012 02:21 PM |
| Oh, I see. But would that error at some point or should I not care? |
|
|
| Report Abuse |
|
|
|
| 01 Apr 2012 02:23 PM |
> But would that error at some point or should I not care?
Good grief. It DID error, that's what you were asking about this whole thread! |
|
|
| Report Abuse |
|
|
miz656
|
  |
| Joined: 19 Jul 2010 |
| Total Posts: 15336 |
|
| |
|