What do I want to achieve: I want a transparent background for a plugin
I have no clue if you can do this
“My” script
local PluginName = "Noob Head v 0.01"
local Toolbar = plugin:CreateToolbar(PluginName)
local Toolbar_Button = Toolbar:CreateButton("Noob Head", "", "rbxassetid://10385821134")
local Opened = false
local WidgetInfo = DockWidgetPluginGuiInfo.new(
Enum.InitialDockState.Float,
true,
false,
200,
300,
150,
150
)
local Widget = plugin:CreateDockWidgetPluginGui(" ", WidgetInfo)
Widget.Title = PluginName
local Frame = script.Parent.Frame
Frame.Parent = Widget
Toolbar_Button.Click:Connect(function()
if Opened then
Widget.Enabled = false
Opened = false
else
Widget.Enabled = true
Opened = true
end
end)