Hey guys I get this infinite yield possible warning from time to time but it never tells me what script its from. Do you guys know how to find out?
Go to VIEW → Find All/Replace All and search for WaitForChild("HumanoidRootPart")
. If that doesn’t give you an answer search for HumanoidRootPart
or WaitForChild(
and search more scripts.
thanks, but I found the solution by disabling each script and seeing which one is causing the problems. I’ll do your solution next time though and see how it goes!
This solution can basically speed up the process when done in combination with what you did. Because if you have a large game the string WaitForChild("HumanoidRootPart")
will most likely be in many scripts. This will highlight said scripts fast so you have to check much fewer scripts than the total amount of scripts within the game.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.