How to make a gui that the player can move around

I’m not sure if this is the right category for this.

I want to make a gui and the player can move it around where ever they want. Is there any way I can do this? I’ve tried searching for it, but couldn’t find a tutorial or anything.

Just make the gui selectable in the gui properties

That isn’t working. I’m trying to make it so the player in-game can move it just to clearify.

Gui objects have a hidden/deprecated Draggable property which you can enable using a (local) script

script.Parent.Active = true
script.Parent.Draggable = true

But there are better alternatives, for example this script created by Tiffblocks

1 Like