Check Roblox APIs for deprecation
check_api_healthVerify Roblox APIs before writing Luau: batch-check existence, deprecation status, security restrictions, and yielding behavior against the live API dump.
Instructions
Batch-check Roblox APIs before you ship Luau that uses them. Pass entries like "Humanoid.MoveTo", "BodyVelocity" or "DataStoreService.GetDataStore" and each is verified against the live API dump: does it still exist, is it deprecated (with the official replacement where the docs give one), is it locked behind a security level normal scripts cannot use, and does it yield. Use this whenever you are about to write or review Roblox code — models often reproduce APIs that Roblox retired years ago.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| members | Yes | Entries to check: "ClassName" or "ClassName.MemberName", e.g. ["BodyVelocity", "Humanoid.MoveTo"]. | |
| max_tokens | No |