There is no audios being inserted into workspace (or any of the game for that matter)
Load strings is disabled
I have manually searched all scripts - no backdoors
This has been ongoing for weeks, and I cant seem to find any solutions. The audios that are played are highly, highly innapropriate and I doubt would have ever been allowed to be uploaded.
If anyone has experienced this before, or knows how I can fix this please let me know asap!!!
I have this script in the game, but it just doesnt do anything to stop it:
for _, i in pairs(game:GetDescendants()) do
i.ChildAdded:Connect(function()
if i:IsA(“Sound”) then
print(i.Name)
i:Destroy()
print(i.Name … “removed”)
end
end)
end