Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Is there any way to disable Animation Editor's / edit it?

Asked by 7 years ago

I used animation editor on one of my places before I began to script in it, and I've got this message for quite a while:

09:58:06.721 - Infinite yield possible on 'Workspace:WaitForChild("Camera")'
09:58:06.722 - Stack Begin
09:58:06.723 - Script 'Plugin_-1.Plugin.AnimationEditor', Line 464
09:58:06.724 - Stack End

I can't seem to edit it, because when I click on the source it doesn't take me anywhere. How can I fix this? Thank you for any answers.

1 answer

Log in to vote
0
Answered by 7 years ago
Edited 7 years ago

WaitForChild is when it yields the current thread until the child with the given name is found. An infinite yield error is when the child with the given name is not being found for a long time, and may yield the script forever.

If a camera shows up in a later time of the Workspace, then ignore this error. It's just a warning that it's taking a very long time to find the child. Otherwise, check if there is a child in the workspace named "Camera".

0
Sorry for the late response, thanks for the answer! Toxicator1 4 — 5y
Ad

Answer this question