Plugin doesn't load my gui [SLOVED]

I am trying to make plugin to show my gui

but it seems not showing that at all

my gui:


image

 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)

I think it’s not supposed to be a screen GUI. You’re supposed to put it in the test widget without the screen gui.

Well it worked thank you for rebooting my brain :heart:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.