SO recently I have gotten a lot of these warnings. I am not sure what caused them because it doesn’t say a line or anything and what they do so I would be happy to know what they do and how to prevent them thx.
Probably one of Roblox’s core scripts. By the name I suppose it’s something camera related.
Mhh ok. I was not thinking of that. Although I do not manipulate the camera with a run service loop in anyway. Idk
RunService:BindToRenderStep(name, fn)
is a method you use to bind a function (fn
) to a given “identifier” (name
).
The thing is though, you can bind multiple functions by calling that method multiple times with the same name
.
That’s the warning you get when RunService:UnbindFromRenderStep(name)
would end up removing multiple functions under that same name.
It shouldn’t impact you at all though.
Twardy is right, and it’s safe to ignore it until patched. Apparently the warning appears when you reset while Updated Roblox Controls are enabled.
Oh ok. I did not reset char tho. It just happens randomly I assume. But thanks!
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.