This thing appears only when playing on server, not local server in roblox studio.
I’d really like to know where is the source of the sound, 'cuz it causes lags and makes it impossible to see Server script errors.
for _, I in ipairs(game:GetDescendants()) do if I:IsA("Sound") and I.SoundId == "rbxassetid://0" then I.Parent = workspace end end
But it gives nothing, same with deleting the sound - nothing.
I have some suspicion about Adonis admin system, as it has some problems few months ago.
In anyway, I don’t have any sounds with ID ‘0’.
I’d like to find out how to stop the spam in output.
Я знаю о бэкдорах и подобных бэкдору вещах, я перепроверяю игру каждый раз когда захожу в студию, и ТОЛЬКО у Адониса есть require(nums) т-к он запрашивает мой модуль по AssetId из тулбокса, поэтому подозрение на него
If you temporarily remove your admin thing, does the issue still occur?
Also, if you run that command from before again (in game), but add a print statement at the same time as parenting the object to workspace, does it give any results?
i.e.
for _, I in ipairs(game:GetDescendants()) do if I:IsA("Sound") and I.SoundId == "rbxassetid://0" then print("MATCH") I.Parent = workspace end end
I guess the next thing to test would be if it’s a script causing it, of it there’s a sound object that you missed.
Simplest way I can think of is to disable all scripts and see if the error still occurs (then reenable them).
The below scripts should allow you to toggle all scripts:
Disable:
for _, p in game:GetDescendants() do
if p:IsA("Script") or p:IsA("LocalScript") then
p:SetAttribute("SCRIPT_ENABLED", p.Enabled)
p.Enabled = false
end
end
Enable
for _, p in game:GetDescendants() do
if p:IsA("Script") or p:IsA("LocalScript") then
p.Enabled = p:GetAttribute("SCRIPT_ENABLED")
p:SetAttribute("SCRIPT_ENABLED", nil)
end
end
(I would recommend creating a backup of the place before running this, just in case I messed something up)
You can (manually) disable the scripts in groups to try to narrow down the search.
You can also try using the command I sent just before, but change it from game:GetDescendants() to workspace:GetDescendants() or ServerScriptService, or other places there may be scripts. This will help you find it.