UnbindFromRenderStep removed error?

" RunService:UnbindFromRenderStep removed different functions with same reference name Test_Outside 2 times. "

I’m getting this error as I’m attending to ‘obviously’ unbind a RenderStep -
Is there a way of taking note of which RenderSteps are active, as to avoid :Unbinding more than once and getting this annoying error?

3 Likes

There is no built-in method for getting all of the current active binds, however you could do it via a ModuleScript or possibly use a debounce to keep it from binding twice.

2 Likes

I used the table technique so I added the Key to a table and if it’s not available it’ll create a new one else it won’t.

2 Likes