"Unable to load plugin icon" Any ideas why that might be happening?

When i run the plugin, it shows an X as the icon, and it prints an error: “Unable to load plugin icon” and i couldnt figure out why.
Code:

local toolbar = plugin:CreateToolbar('Triangles')
local button = toolbar:CreateButton('Create triangle', 'Create a triangle with 3 positions.', 'rbxassetid://7089315414')
1 Like

I tried it and it worked as expected:
image

Are you sure you are activating the plugin correctly?
I suggest going over the following article and making sure everything is correct on your end as the script itself is functioning correctly: Intro to Plugins

whoopsie, i mustve put the wrong id, i was testing out others ids. They seem to work but not mine.
the real id is: “rbxassetid://7089315414”

Use this asset ID: 7089315401
The issue here is that you are using a Decal ID instead of Asset ID

1 Like

That also happened to one of my plugins. I have no idea.

Thank you very much, rookie error.