Plugin size not working with DockWidgetPluginGuiInfo.new()

Im trying to make my plugin size similar to the size of this one but its not working

image

I have the size really low but no matter how big the number is, the plugin size doesnt change and I am saving it as a local plugin

local widgetInfo = DockWidgetPluginGuiInfo.new(
	Enum.InitialDockState.Float,
	false,
	false,
	150,
	150,
	150,
	150
)

local animateWidget = plugin:CreateDockWidgetPluginGui('Animate', widgetInfo)
animateWidget.Title = 'Animate'

heres what it looks like right now, clearly its not the size that I put inside the script

2 Likes

The plugin you showed doesn’t use widgets, it places an actual ScreenGui in your viewport.

ohh okay now I know, tho Ill still like to know why the widget size isnt changing

It’s been an issue since the recent “modern” studio update. It’ll be better, for now, to just use screengui’s if you really want to change the size of GUI objects

I haven’t seen anyone post a bug report about it so it might take a long time for anyone to actually try fixing it

ohh okay, yeah ill just go with screenguis instead, thank you both for help.

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