Yahoo Αναζήτηση Διαδυκτίου

Αποτελέσματα Αναζήτησης

  1. 18 Απρ 2020 · Infinite yields are statements (kind of like waits), that last indefinitely. An example of this can be: or simply. both are infinite yields. An infinite yield is when there’s something that can result in a yield which could be run infinitely (Like the people above me have said). Think about it like this.

  2. 27 Δεκ 2023 · ClearlyVi (MrVi) December 27, 2023, 1:28am #2. Yielding means your code will come to a halt until a function or an execution finishes. On your 3rd line when you do local ScrollingFrame2 = ScreenGui:WaitForChild ("ScrollingFrame2"), it won’t run any code past that line until there’s something called ScrollingFrame2 inside of ScreenGui ...

  3. 23 Απρ 2023 · I have a lot of scripts in my game and a lot of them have replicated storage. I deleted a remote event because I don’t need it anymore, but I can’t find where it is defined on script because when the console outputs infinite yield possible, I don’t know which script it is. It doesn’t tell me the script name or the line it is on. it doesn’t even tell me if it’s on a server script or ...

  4. 5 Ιουν 2021 · Rather than taking the tool in and out of the character/backpack like this, you could simply use humanoid:EquipTool(tool) and humanoid:UnequipTools() to equip/unequip the camera. local humanoid = Player.Character:WaitForChild("Humanoid") local tool = Player.Backpack:WaitForChild("Camera") if Equip == true then.

  5. 2 Ιαν 2023 · Greetings, The only problem I got is that the member already exists when the script is running, so I don’t understand why it doesn’t work. The error: Script that is running after the value is created: plr:WaitForChild("Currency"):WaitForChild("DeliveryTime").Value = plr:WaitForChild("Replacements"):WaitForChild("ReplacementValue").Value Script that is running to create the value: local ...

  6. 1 Μαρ 2018 · local RS = game:GetService("ReplicatedStorage") local Event = Instance.new("RemoteEvent", RS) Event.Name = "PunchEvent" local function FiredEvent(Player) local ...

  7. 15 Ιουν 2020 · 0. to stop the infinite yield possible you need to add a timeout to the wait. Example: wait_time = 5. local Sidebar = script.Parent: WaitForChild("Sidebar", wait_time) you can also replace wait_time with anything (and you can just put the number in the wait for child if you want) you don't have to set it to a low number, you can set it to ...

  8. WaitForChild. If a call to this function exceeds 5 seconds without returning, and no timeOut parameter has been specified, a warning will be printed to the output that the thread may yield indefinitely; this warning takes the form Infinite yield possible on 'X:WaitForChild ("Y")', where X is the parent name and Y is the child object name.

  9. 20 Αυγ 2024 · The output prints infinite yield possible when it is waiting for an object that you wanted to load in using :WaitForChild() for too long. eg local toy = workspace:WaitForChild('Zebra') -- Script will yield here until zebra loads in. The game is just saying ‘Hey, the thing you are asking me to wait for may not even exist, go check if its there’.

  10. 5 Μαΐ 2022 · If a call to this function exceeds 5 seconds without returning, and no timeOut parameter has been specified, a warning will be printed to the output that the thread may yield indefinitely; this warning takes the form Infinite yield possible on 'X:WaitForChild("Y")', where X is the parent name and Y is the child object name.

  1. Γίνεται επίσης αναζήτηση για