How do i make the gui draggable? I can't find the draggable box
Draggable is deprecated. If you really want to use it, select the object(s) you want to make draggable and enter this into your command bar:
1 | for _,v in ipairs (game.Selection:Get()) do |
2 | if v:IsA( 'GuiObject' ) then |
3 | v.Active = true |
4 | v.Draggable = true |
5 | end |
6 | end |