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.
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".