Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Dock Widget Plugin Gui looks Guide?

Asked by 4 years ago
Edited 4 years ago

I recently found out that plugins can create dog widgets in studio, so I made one myself but now I'm wondering how to design it. I want to add looks to my dock widget and make it usable. I have the basic code, but I'm still staring at the screen with a headache of how.

My dock widget code, not very helpful though...

01local info = DockWidgetPluginGuiInfo.new(
02    Enum.InitialDockState.Right,
03    true,
04    false,
05    250,
06    250,
07    250,
08    250
09)
10 
11local gui = plugin:CreateDockWidgetPluginGui("MyFirstEverDockWidget", info)
12gui.Title = "My first dock widget"
13gui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
14 
15--From here I'm just stuck.

Please, someone help.

Edit: I Solved it... answers will now not matter...

0
I did it by adding a screengui instead of a frame. PoWerofThEePg 43 — 4y

Answer this question