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