About 373,000 results
Open links in new tab
  1. AWP Injection Detection, Hook detection, Infinite Yield ... - Roblox

    Mar 22, 2025 · Most of this post is directed towards AWP users, with some bonus Infinite Yield and Dex Explorer detections. The Infinite Yield and Dex detection targets all executors, not just AWP. AWP …

  2. Is there a way to detect Infinite Yield? - Roblox

    Nov 28, 2024 · Hello, I would like to know how it is possible to detect if a player activates the Infinite Yield cheat, I have already seen something like this in several games, and I would love to know what …

  3. How to yield a script until function returns a value - Roblox

    Jan 24, 2023 · In the example you provided, when you call the function from script B, the current thread of script A will yield until this function returns but if this function was wrapped into another thread like …

  4. How to yield script until every part has loaded? - Roblox

    Sep 23, 2024 · How to yield script until every part has loaded? This is my current script inside PlayerScripts (its a local script): for i,v in workspace:GetDescendants() do if v:IsA("BasePart") then if …

  5. Infinite Yield while requiring a ServerScriptService folder

    Dec 21, 2024 · Infinite yield possible on ‘ServerScriptService:WaitForChild (“ModuleScripts”)’ - Studio Stack Begin - Studio Script ‘ReplicatedStorage.ModuleScripts.HitManager’, Line 5 I’ve tried to look …

  6. How to fix Infinite Yield Possible? - Scripting Support - Roblox

    Dec 27, 2023 · 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 …

  7. Infinite yield possible - Scripting Support - Developer Forum - Roblox

    Jun 15, 2023 · An infinite yield basically means there is a possibility of ProximityPromptPart3 (in this case) never being found by :WaitForChild (). This warning exists to make you informed of this. If …

  8. 'Infinite yield possible ...' has started FLOODING my output ... - Roblox

    Aug 25, 2025 · My game experience has recently started ‘infinite yielding’ everything and giving the result to the output. I have ZERO idea as to why this happened, it’s been happening ever since I …

  9. How to yield execution until a function is completed? - Roblox

    May 4, 2025 · coroutine.yeild? coroutine.yield is actually used for something completely different, I’m afraid. It’s basically used to return values from a coroutine whilst suspending its execution.

  10. Do functions yield the whole script? - Scripting Support - Roblox

    Dec 4, 2023 · I have a script with most of my main functions for a game in it, it also have a multitude of events connected to these functions, if two of these events fire, two functions are now running, will …