i can't seem to find a "Draggable" property in a frame, did they remove it or is there another way to make guis draggable?
The GUI draggable property is now deprecated by roblox
However, you can still activate it by simply creating a short script:
frame.Draggable = true frame.Active = true -- This is needed for draggable to work.
Roblox deprecated the Draggable Property and recommend you make your own methods of dragging
Refer to this for help on custom draggable features: Custom Draggable GUI