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.
01 | function 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 - UDim 2. new( 0 , 0 , 0 , 15 ) |
10 | end |
11 | end |
12 | end |
13 | end |
14 |
15 | game.Players.PlayerAdded:connect( function (player) |
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.
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