Miscellaneous

getfflag

Reads a Roblox fast flag by exact name and returns its value as a string.

Składnia

getfflag(name: string): string | nil

Argumenty

NazwaTypOpis
namestringExact fast flag name to read.

Zwroty

NazwaTypOpis
flagValuestring | nilString form of the flag value, or nil when the flag is missing or unsupported.

Opis

Reads a Roblox fast flag by exact name and returns its value as a string. Missing or unsupported flags return nil.

Wywolaj z 1 parametrami: name. Tabela argumentow wyjasnia wartosci wymagane i te, ktore doprecyzowuja zachowanie.

Zwraca flagValue (string | nil). Uzyj tabeli zwrotow, aby oddzielic wartosci sukcesu, wyniki nil i bledy do obsluzenia.

Przykład

Read a Roblox fast flag by exact name. Known bool and int flags are returned as strings.

local value = getfflag("SomeFFlagName")

if value ~= nil then
    print(value)
end