[functionname][arguments (:<type>, ? = optional, ... means anything)] -> [returned type]
-
[>] description
-
[!] warning
-
[i] information
-
[*] alias
Example:
-
print(...) -> nil
-
- [>] Adds a log to the developer console and (if in studio) into the
output
panel.
- [>] Adds a log to the developer console and (if in studio) into the
-
- [i]
tostring
s...
- [i]
-
gethui() -> Instance
-
- [>] Returns the
LocalPlayer
'sPlayerGui
- [>] Returns the
-
getinstances() -> table
-
- [>] Returns all
Instances
- [>] Returns all
-
getnilinstances() -> table
-
- [>] Returns all
Instances
parented tonil
/ that are destroyed
- [>] Returns all
-
getscripts() -> table
-
- [>] Returns all
BaseScripts
- [>] Returns all
-
getmodules() -> table
-
- [>] Returns all
ModuleScripts
- [>] Returns all
-
newcclosure(closure:<function>) -> function
-
- [>] Wraps
closure
into acoroutine
- [>] Wraps
-
newlclosure(closure:<function>) -> function
-
- [>] Wraps
closure
into a aluau
function
- [>] Wraps
-
iscclosure(closure:<function>) -> boolean
-
- [>] Returns if
closure
is acclosure
- [>] Returns if
-
islclosure(closure:<function>) -> boolean
-
- [>] Returns if
closure
is anlclosure
- [>] Returns if
-
clonefunction(closure:<function>) -> function
-
- [>] Returns a C or L closure which runs
closure
along with itsvararg
- [>] Returns a C or L closure which runs
-
getcurrentline() -> number
-
- [>] Returns the current line which ran this
-
getthreadidentity() -> number
-
- [>] Returns 2
-
- [*]
getidentity
,getthreadcontext
- [*]
-
getthread() -> thread
-
- [>] Returns the current running coroutine
-
getmemoryaddress(obj:<any>) -> string
-
- [>] Returns the memory address of
obj
- [>] Returns the memory address of
-
getgenv() -> table
-
- [>] Returns the xAPI environment
-
getrenv() -> table
-
- [>] Returns the Roblox environment
-
isexecutorclosure(closure:<function>) -> boolean
-
- [>] Returns if
closure
isn't a part of Roblox's environment
- [>] Returns if
-
- [*]
checkclosure
,isourclosure
- [*]
-
getrawmetatable(object:<table or userdata>)
-
- [>] Returns the rawmetatable of
object
if available
- [>] Returns the rawmetatable of
-
- [!] Will not get the real rawmetatable or the rawmetatable of predefined objects (like
game
,getfenv
, etc.)
- [!] Will not get the real rawmetatable or the rawmetatable of predefined objects (like
-
setrawmetatable(object:<table or userdata>, meta:<table>)
-
- [>] Sets the rawmetatable of
object
tometa
- [>] Sets the rawmetatable of
-
isluau() -> boolean
-
- [>] Returns if the current game is using luau
-
- [i] Will always return true as luau is no longer toggleable
-
dumpstring(_string) -> string
-
- [>] Returns
_string
with every character being converted to a number
- [>] Returns
-
- (
a
->\97
)
- (
-
checkcaller() -> boolean
-
- [>] Returns if the current thread is the exact same as the scripts original thread
-
isgameactive() -> boolean
-
- [>] Returns if the window is focused or not
-
- [*]
isrbxactive
- [*]
-
setfpscap(newfpscap:<number>) -> nil
-
- [>] Sets the FPS cap to
newfpscap
- [>] Sets the FPS cap to
-
setclipboard(content) -> nil
-
- [>] Fires the
clipboard
event withcontent
- [>] Fires the
-
- [*]
setclipboard
,setrbxclipboard
,toclipboard
- [*]
-
getloadedmodules() -> table
-
- [>] Returns a table of all modules that were loaded using require
-
identifyexecutor() -> union<string, string>
-
- [>] Returns xAP[i] and then the automatically generated build ID
-
- [*]
getexecutorname
- [*]
-
crypt.base64encode(data)
-
- [>] Returns
data
encoded using base64
- [>] Returns
-
- [*]
base64_encode
- [*]
-
crypt.base64decode(data)
-
- [>] Returns
data
decoded using base64
- [>] Returns
-
- [*]
base64_decode
- [*]
-
crypt.hash(data, algorithm)
-
- [>] Returns
data
hashed withalgorithm
- [>] Returns
-
- [i] Supports
SHA2
andmd5
- [i] Supports
-
crypt.generatabytes(len)
-
- [>] Return random bytes of length
len
- [>] Return random bytes of length
-
readfile(name: string) -> string
-
- [>] Reads the content of the file specified by
name
and returns it as a string.
- [>] Reads the content of the file specified by
-
writefile(name: string, data: string) -> nil
-
- [>] Writes the provided
data
to the file specified byname
.
- [>] Writes the provided
-
appendfile(name: string, data: string) -> nil
-
- [>] Appends the provided
data
to the end of the file specified byname
.
- [>] Appends the provided
-
listfiles(name: string) -> table
-
- [>] Returns a table containing the names of all files inside the specified folder.
-
isfile(name: string) -> boolean
-
- [>] Returns true if the specified
name
refers to an existing file, otherwise false.
- [>] Returns true if the specified
-
isfolder(name: string) -> boolean
-
- [>] Returns true if the specified
name
refers to an existing folder, otherwise false.
- [>] Returns true if the specified
-
makefolder(name: string) -> nil
-
- [>] Creates a new folder with the specified
name
.
- [>] Creates a new folder with the specified
-
delfolder(name: string) -> nil
-
- [>] Deletes the folder specified by
name
along with all its contents.
- [>] Deletes the folder specified by
-
delfile(name: string) -> nil
-
- [>] Deletes the file specified by
name
.
- [>] Deletes the file specified by
-
rconsoleprint(txt: string) -> nil
-
- [>] Prints
txt
torconsole
- [>] Prints
-
- [i] Code: 1
-
- [*]
rconsoleprint
,consoleprint
- [*]
-
rconsolewarn(txt: string) -> nil
-
- [>] Warns
txt
torconsole
- [>] Warns
-
- [i] Code: 2
-
- [*] rconsolewarn, consolewarn
-
rconsoleerr(txt: string) -> nil`
-
- [>] Errors
txt
torconsole
- [>] Errors
-
- [i] Code: 3
-
- [*]
rconsoleerr
,rconsoleerror
,consoleerr
,consoleerror
- [*]
-
rconsoleclear() -> nil
-
- [>] Clears
rconsole
output
- [>] Clears
-
- [i] Code: 4
-
- [*]
rconsoleclear,
consoleclear
- [*]
-
rconsoleinput() -> string
-
- [>] Waits for and returns user input from
rconsole
- [>] Waits for and returns user input from
-
- [i] Code: 5
-
- [*]
rconsoleinput
,consoleinput
- [*]
-
rconsolesettitle(txt: string) -> nil
-
- [>] Sets the title of
rconsole
window to the specifiedtxt
- [>] Sets the title of
-
- [i] Code: 6
-
- [*]
rconsolesettitle
,consolesettitle
,rconsolename
- [*]
-
rconsolecreate() -> nil
-
- [>] Creates/Shows a new
rconsole
window
- [>] Creates/Shows a new
-
- [i] Code: 7
-
- [*]
rconsolecreate
,consolecreate
- [*]
-
rconsoledestroy() -> nil
-
- [>] Destroys/Closes the current
rconsole
window
- [>] Destroys/Closes the current
-
- [i] Code: 8
-
- [*]
rconsoledestroy
,consoledestroy
- [*]