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.
Luau
syn.is_beta() -> booleanParameters
This function takes no arguments.
Returns
booleantrue 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
Luau
if syn.is_beta() then
print("Synapse compatibility reports beta")
end