From 502e28864835553860c907a597e30879e9065fa4 Mon Sep 17 00:00:00 2001 From: filoxenace Date: Mon, 22 Sep 2025 17:37:04 -0400 Subject: [PATCH] Update README.md --- README.md | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 2cf98f5..0e51214 100644 --- a/README.md +++ b/README.md @@ -27,31 +27,28 @@ chmod +x detector.luau ### Basic Usage ```bash -lune run detector path/to/your/model.rbxm +lune run detector path/to/your/model.rbxm(x) ``` -### Output Formats +### Options + +#### Directory scan: -Human-readable output (default): ```bash -lune run detector model.rbxm +lune run detector.lua --directory /path/to/your/directory/with/models ``` -JSON output for external use: +#### Output list of files containing workspaces: + ```bash -lune run detector.lua model.rbxm --format=json +lune run detector.lua --output /path/to/your/output/file.txt ``` -### Batch Processing -Process multiple files: -```bash -lune run detector.lua *.rbxm --batch -``` ## Limitations -- Requires valid .rbxm files (corrupted/invalid files may cause errors) +- Requires valid .rbxm files (corrupted/invalid/different versioned files may cause errors) ## Contributing