I am trying to make plugin to show my gui
but it seems not showing that at all
my gui:
local ToolBar = plugin:CreateToolbar("Easy Tween")
local OpenEasyTween = ToolBar:CreateButton("EasyTween","Tween any gui without scripting them!!","rbxassetid://4458901886")
local widgetInfo = DockWidgetPluginGuiInfo.new(Enum.InitialDockState.Float,false,false,200,300,150,150)
local testWidget = plugin:CreateDockWidgetPluginGui("TestWidget", widgetInfo)
testWidget.Enabled = false
local Folder = script.Parent
local ScreenGui = Folder.ScreenGui
ScreenGui.Parent = testWidget
OpenEasyTween.Click:Connect(function()
print(ScreenGui.Parent)
testWidget.Enabled = not testWidget.Enabled
end)