I’m talking about messages from a published game and actual roblox lobbies. I’m using a pcall and print the error if there is one.
print(tostring(result))
Is there any way to see these printed messages because it is useless if I don’t know what the error is. If this isn’t possible please tell me how to do it so it does show up in the error report.
Also, I have some warnings in the error report but it doesn’t show me what line or the script it comes from.
I don’t think the creator hub is going to be of much help. Try running this in studio (and if it only works in multiplayer try Team Test). Warnings or errors from the Output console in studio tell you directly from where it’s coming from (unless it’s from a CoreScript).
Well, it looks like your warning is coming from a tool. Maybe try using it in studio and leave it running for a couple of seconds? Not to say you haven’t tried, but an “infinite yield possible” error typically takes a moment to pop up.
Ya I’ve tested it hundred of times and never seen it and if it did happen there would be something visually off that would let me know right away that something isn’t right
from the AI:
"The “Infinite Yield” error message is often related to a script that is causing the game to run indefinitely, which can lead to performance issues or even crashes. When a script yields infinitely, it means that the script is stuck in an infinite loop and is not allowing the game to progress or update.
One possible approach to try might be to review your script’s logic and look for any potential infinite loops or recursive functions that could be causing the issue. You can also try to add some debug prints or logging statements to see where the script is getting stuck.
Another option could be to try to isolate the issue by commenting out sections of your script or removing certain functions to see if the error persists. This can help you narrow down the cause of the issue and potentially identify the problematic code."