Unfixable error with plugin buttons

Whenever I update any plugin using the “Manage Plugins” window, the plugin I’m developing creates an error I don’t fully understand. Once this error shows up, the script immediately stops working.

I’ve tried putting a “wait()” before it creates the buttons, but it’s not helping, no matter how long I set it as. Anyone know why this is happening?

Error Message

image
This message directs me to the image link used when it creates the button.

local toolbar = plugin:CreateToolbar("Server Protector Tools")
local scanOpt = toolbar:CreateButton(
    "Scanning Options",
    "Modify scanning options before scanning.",
    "http://www.roblox.com/asset/?id=3102243869" -- << Error here
)
3 Likes

Yess I have been having this issue I removed all of my plugins and installed them again and it worked until I restarted studio I think this might be because of my iCloud Drive but I am not sure.

1 Like

Ah, yes. I’ve had this error before. I had to publish the plugin, then disable the script for it. This may not help in your case, but it helped my error previously.

1 Like

There’s an existing bug report here: This toolbar cannot create more than one button with id.

1 Like