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

Infinite yield possible - bug. How to fix?

Asked by
nanaluk01 247 Moderation Voter
8 years ago
Edited 8 years ago

It works in studio, but outside studio it does not work. The error is on line 20

I get this error in Server Log:

Infinite yield possible on 'Players.Nanaluk01.PlayerGuiWaitforChild("ChatGui")' Script 'ServerScriptService.Chat', Line 20

How can I fix this?

Here Is The Coding:

Please Note: -The Error Lies On Line 20 -The .Fr you can see is Frame. I don't know why it disappears in this question.

01function UpdateOldLabels(Parent)
02    for i,v in pairs(Parent:GetChildren()) do
03        if v.Name:sub(1,4):lower() == "line" then
04            local LineNumber = v.Name:sub(5)
05            if LineNumber == "7" then
06                v:Destroy()
07            else
08                v.Name = "line"..tostring(tonumber(LineNumber) + 1)
09                v.Position = v.Position - UDim2.new(0,0,0,15)
10            end
11        end
12    end
13end
14 
15game.Players.PlayerAdded:connect(function(player)
View all 59 lines...

2 answers

Log in to vote
1
Answered by
adark 5487 Badge of Merit Moderation Voter Community Moderator
8 years ago

That isn't an error, it's a warning.

Basically, WaitForChild will yield forever until the thing you're looking for is found. That is what 'infinite yield possible' means.

To 'fix' it, use the optional second argument of WaitForChild: the timeout (in seconds). If you want an infinite yield, which you don't, use math.huge. I suggest something around 20 seconds.

0
HI i do a cobatsystem but when i fixed some thnig my program crashed and when i got back is give this error ? crazygamespp -5 — 4y
Ad
Log in to vote
0
Answered by 4 years ago

i get this weird error how do i gonna fix it hapend on a crash

19:32:18.826 - Infinite yield possible on 'Workspace.crazygamespp:WaitForChild("Right Arm")' 19:32:18.826 - Stack Begin 19:32:18.829 - Script 'ServerScriptService.CombatHandler', Line 16 19:32:18.829 - Stack End

picture here https://i.imgur.com/3G2zFq3.png

0
i liked job with that code 2 days and i know is was working until is crashed crazygamespp -5 — 4y

Answer this question