LogoLogo
  • Main
  • Environment Functions
  • Script Functions
  • Table Functions
  • Input
  • Hooking
  • Misc
  • FileSystem
  • Libraries
    • Console
    • Fluxus
    • Drawing
    • Debug
    • Crypt
    • Bit
Powered by GitBook
On this page
  • <table> getsenv(<LocalScript/ModuleScript> scr)
  • <LocalScript/ModuleScript> getcallingscript(<void>)
  • <function> getscriptclosure(<LocalScript/ModuleScript> scr)
  • <string> getscripthash(<LocalScript/ModuleScript> scr)
  • <string> getscriptbytecode(<LocalScript/ModuleScript> scr)
  • <void> unlock_module(<ModuleScript> obj)
  • <void> lock_module(<ModuleScript> obj)

Was this helpful?

Script Functions

<table> getsenv(<LocalScript/ModuleScript> scr)

Returns scr enviorment.

<LocalScript/ModuleScript> getcallingscript(<void>)

Returns the script that is calling the function.

<function> getscriptclosure(<LocalScript/ModuleScript> scr)

This is not the original function and will not have upvalues or environment correctly defined.

Gets scr bytecode & then creates an LClosure.

<string> getscripthash(<LocalScript/ModuleScript> scr)

Returns a SHA384 hash of scr encrypted bytecode.

<string> getscriptbytecode(<LocalScript/ModuleScript> scr)

It returns Luau bytecode.

Gets scr bytecode, decrypts it and then returns it.

<void> unlock_module(<ModuleScript> obj)

Unlocks obj.

<void> lock_module(<ModuleScript> obj)

Locks obj.

PreviousEnvironment FunctionsNextTable Functions

Last updated 3 years ago

Was this helpful?