Automated Moderation Flags Plugin If It Contains The String “LoadAsset"

Roblox’s automated moderation system flags any plugin published to the Creator Store that contains the string “loadasset”–no matter the context or how you capitalize the letters. I tested the following with a plugin, but I assume it happens to models as well since they share the same community guidelines.


Publishing a plugin with a single script containing the code below causes the plugin to be instantly taken off the Creator Store.

local function loadAsset()

end

What’s even weirder is that this also gets flagged.

local str = "loadAsset"

Oh, and if those 50+ content distribution messages I had to receive in order to find this bug left a bad mark on my I account, can they be removed please?
5 Likes

I agree that is a bug. In fact, it shouldn’t be flagging it at all because there is an InsertService:LoadAsset which I have used many times from the command line without any issues. I have never tried it within a plugin though.

1 Like