I’m not sure what’s happening I’ve looked at several other posts but i cant seem to get my icon loaded
My Image ID is 8303882164
im getting an error aswell: Unable to load plugin icon.
--// Variables
local Toolbar = plugin:CreateToolbar("MrKezzel's Virus Scanner")
local PluginButton = Toolbar:CreateButton(
"Virus Scanner",
"Opens the UI to begin a virus scan",
"http://www.roblox.com/asset/?id=8303882164"
)
local Menu = script:WaitForChild("PluginUI")
--// Data
local PluginActive = false
--// Main
function PluginButtonClicked()
local CoreGui = game:GetService("CoreGui")
if PluginActive == false then
Menu.Parent = CoreGui
PluginActive = true
else
Menu.Parent = script
PluginActive = false
end
end
--// Listeners
PluginButton.Click:Connect(PluginButtonClicked)
Any and all help is appreciated!