How can i make a plugin that IS NOT DOCKED

i want to make a plugin that ISN’T DOCKED but ALL google shows me is how to make a docked plugin gui (sorry for being extremely mad, it’s just that i’ve been searching for over 3 days on how to do this)

I checked it and i saw a post that someone requested this feature, I don’t know if they are working on it or if you meant.
Plugins should be able to create undockable Plugin GUIs - Feature Requests / Studio Features - DevForum | Roblox

I know it is already possible, because some plugins like Moon Animator do it. I’ve done it in the past, but don’t have the code anymore and can’t remember how I did it.

Can’t you just parent your plugin ui to coregui?

I think by “docked plugin GUI”, you meant widgets. I believe you can just add ScreenGui inside CoreGui.

local CoreGui = game:GetService("CoreGui")

YourScreenGui.Parent = CoreGui
1 Like

Yup, forgot all about CoreGui.

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