From bab3cfd920354991812c4efae4551eb2bc628105 Mon Sep 17 00:00:00 2001 From: sindri <33976067+isarsindri@users.noreply.github.com> Date: Mon, 2 Mar 2026 13:25:21 +0100 Subject: [PATCH] Document draggable() action for GuiObject Add documentation for draggable() action in 12-actions.md --- docs/tut/crash-course/12-actions.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/tut/crash-course/12-actions.md b/docs/tut/crash-course/12-actions.md index 60e5c30..e362c63 100644 --- a/docs/tut/crash-course/12-actions.md +++ b/docs/tut/crash-course/12-actions.md @@ -53,3 +53,12 @@ instance.Text = "foo" -- "foo" will be printed by the effect The source `output` will be updated with the new property value any time it is changed externally. + +# draggable() + +Creates an Action that makes a GuiObject draggable using input events (mouse and touch). This helper is intended for reuse across components and does not use Roblox’s deprecated `.Draggable` property. + +## Type + +```lua +draggable(opts: DraggableOptions?) -> Action