Unable to load plugin icon

Hi, I’m trying to fix this bug but I can’t, the problem is that the plugin icon made by me doesn’t appear. If I look at the output it says “Unable to load plugin icon”. Does anyone know how I can fix this?
Here is the code:

local toolbar = plugin:CreateToolbar("Notepad")
local button = toolbar:CreateButton("Open Notepad", "Notepad", "rbxassetid://10886215059")
1 Like

It may be because the icon is still under moderation by Roblox. You might want to wait.

2 Likes

You can try reuploading the icon again or it might be currently under moderation.

2 Likes

I just tried. The 1st icon (Published on sept 11, 2022) isn’t in moderation. Now I tried with a 2nd icon and it isn’t in moderation and doesn’t appear too.

Did you try to use the Asset ID of the Plugin image instead of the Decal ID?

No, I’m gonna try it now, thank you.

I just tried and it doesn’t work too.

I had this same issue and the fix was using this format: http://www.roblox.com/asset/?id=ASSET_ID

local ASSET_ID = 123456789
local asset_image = `http://www.roblox.com/asset/?id={ASSET_ID}`

This could also not be your issue.

I tried this before doing this post but it didn’t work too.

I’ve had this issue before but it solved itself when I uploaded the plugin to roblox and installed it. Give that a try

Already done but it doesn’t work too.

How did you get the Asset ID of the Decal?

from the dashboard, by going on decals and pressing the copy id button on the decal.

That’s the Decal ID, not the Asset ID of the image. They’re 2 different things.

There seems to be a lot of confusion on getting the Asset ID of Decals, so I’ll try to point a possible solution:

  1. Copy the ID of the Decal (as you did in your reply already).
  2. Insert a Decal in Workspace and paste the Id in the TextureId. Studio should automatically generate a rbxasset ID. Copy that and paste it in the Plugin’s script.
2 Likes

Thank you for the information! I will try it now.

It works! Thank you so much for the help

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.