-
What do you want to achieve?
In the Output, it shows “Infinite yield possible” warnings when I shouldn’t. I want to know if there is a way to get rid of these. -
What is the issue?
These are the lines that are causing these warnings:
local gui = playerGui:WaitForChild("ResetGui")
local backpack = player:WaitForChild("Backpack")
local gui = player:WaitForChild("PlayerGui"):WaitForChild("BuildGui")
The objects are being replicated, and my scripts are not breaking because of this. It appears that these are just useless messages that clutter up the Output. The Backpack warning does not appear every time I run it, but the BuildGui and ResetGui warnings do. It doesn’t exactly cause problems, but it takes up space in the Output and is pretty annoying. Is there something I can do to fix this?