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:
for _,v in ipairs(game.Selection:Get()) do if v:IsA('GuiObject') then v.Active = true v.Draggable = true end end