A plugin I made loops through the descendants of the game and checks if a descendant’s ClassName == "ModuleScript"
. Within the last two weeks, this error has been breaking my plugin because of this error when it wasn’t before:
The current thread cannot access 'StreamingService' (lacking capability Assistant)
If I had to guess, StreamingService has some protections around it that prevent it’s ClassName from being indexed. I’m not trying to use StreamingService in any way - and the error occurs only when I’m looping through all descendants of a game and checking against their ClassName.
Expected behavior
Indexing the ClassName of a Service wouldn’t emit an error, and wouldn’t cause my plugin to break.