Here’s an image:
code:
local pluginbar = plugin:CreateToolbar("Malwarebytes knockoff")
local pluginbutton = pluginbar:CreateButton("Scan the game", "Scans the game, searched for suspicious names. (no script reading support)", "rbxassetid://10605442070")
local windowinfo = DockWidgetPluginGuiInfo.new(
Enum.InitialDockState.Bottom,
false,
false
)
local window = plugin:CreateDockWidgetPluginGui(
"Scanning options", windowinfo
)
local test = Instance.new("Frame", window)
local windowopened = false
pluginbutton.Click:Connect(function()
if not windowopened then
window.Enabled = true
windowopened = true
else
window.Enabled = false
windowopened = false
end
end)
i’ve got no clue. it’s a wip. i’m creating an antivirus.