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 6 years ago
Edited 6 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 6 years ago
Edited 6 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:

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

Answer this question