Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do i make the gui draggable?

Asked by 7 years ago
Edited 7 years ago

How do i make the gui draggable? I can't find the draggable box

1 answer

Log in to vote
0
Answered by 7 years ago
Edited 7 years ago

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:

1for _,v in ipairs(game.Selection:Get()) do
2if v:IsA('GuiObject') then
3    v.Active = true
4    v.Draggable = true
5    end
6end
0
indent your code my guy Zafirua 1348 — 7y
Ad

Answer this question