
Infinite Yield while requiring a ServerScriptService folder
Dec 21, 2024 · The gem module script that grabs information for gems works perfectly fine. However, when I try implementing the exact same thing for Pickaxes (same code as the one above except …
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 …
Infinite yield possible on 'ServerStorage:WaitForChild ("Scripts")'
Dec 16, 2023 · If this is in a LocalScript, ServerStorage does not exist on the client, even if you call :GetService(). You’ll have to switch it over to a server script, hence the service name …
"Infinite yield possible" warn even though the script works
Aug 16, 2023 · The code works and runs perfectly well, but after a few seconds i still get the warning: Infinite yield possible on 'ServerScriptService:WaitForChild("Modules")'.
Infinite yield possible - Scripting Support - Developer Forum - Roblox
Oct 10, 2021 · Hello. So I’m making a city game, and there’d be a leader that controls the city. He has the ability to raise taxes, but once the leader dies, he can’t change the taxes anymore. I made a …
What's an infinite yield? - Scripting Support - Developer Forum - Roblox
Apr 18, 2020 · The potential Infinite yield warning arises when , if a call to this function exceeds 5 seconds without returning an instance, because then there is a possibility that the thread would yield …
[Solved] Requiring Module Just Yields - Roblox
Mar 18, 2019 · Yes, it will yield all scripts that have required it as when you require a module it yields until it is done initializing. However, it is stuck in an infinite loop of requiring each other, so yes, it will …
Got "Infinite yield possible on.." error - Help and Feedback ...
Jan 8, 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 …
Module script infinite yield - Scripting Support - Roblox
Jul 12, 2024 · So basically I want to make a nuke, where only 2 players can have the nuke keys at the same time, for that I am using a module script to count how many keys have been picked up, now …
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 …