Owl.Util.Flag.GetAll(): {[string]: FlagState}
Server OnlyReturns a dictionary mapping all registered flag names to their current FlagState.
Returns
Related Types
local allFlags = Owl.Util.Flag.GetAll()
for flagName, flagState in pairs(allFlags) do
print(flagName, "Enabled:", flagState.Enabled)
end