Reference API Roblox

Engine API

Website

Related

Reference API Roblox

Severity

Classifies the severity level of a Luau LSP diagnostic reported by a Script Analysis callback.

Items 4

HistoryNameValueDescription
567Error1

Reports a critical error that indicates a definite problem in the script.

567Warning2

Reports a potential problem that can cause incorrect behavior but does not prevent the script from running.

573Information3

Conveys informational context about the script without indicating a problem.

573Hint4

Provides a subtle suggestion, such as a style improvement or an unused-variable notice.

Description

Severity is used in the diagnostics table returned by Script Analysis callbacks registered with ScriptEditorService:RegisterScriptAnalysisCallback(). Each diagnostic entry can include a severity field set to one of these values to control how the diagnostic is categorized in the Script Analysis tool and how the corresponding source range is highlighted in the Script Editor.

The enum maps directly to the Language Server Protocol DiagnosticSeverity specification.

History 5

Settings