syn.is_beta Synchronous

Read the beta flag exposed by Kawaii’s optional Synapse compatibility table. Scripts sometimes use this flag to choose a compatibility path.

Syntax
Luau
syn.is_beta() -> boolean

Parameters

This function takes no arguments.

Returns

boolean

true in this implementation.

Usage notes

This is a fixed compatibility response, not a query of the installed app release channel.

Availability

This function requires the Synapse environment setting, which is off by default.

Example

Example
Luau
if syn.is_beta() then
    print("Synapse compatibility reports beta")
end
Kawaii documentation