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> getrawmetatable(<table> obj)
  • <bool> setrawmetatable(<table> obj, <table> mt)
  • <void> setreadonly(<table> obj, <bool> val)
  • <void> make_readonly(<table> obj)
  • <void> make_writeable(<table> obj)
  • <bool> isreadonly(<table> obj)

Was this helpful?

Table Functions

<table> getrawmetatable(<table> obj)

Returns all the metatables of obj. Returns nil if it does not exist.

<bool> setrawmetatable(<table> obj, <table> mt)

Sets obj metatable to mt.

<void> setreadonly(<table> obj, <bool> val)

Will set obj readonly status to val.

<void> make_readonly(<table> obj)

Will set obj readonly status to true.

<void> make_writeable(<table> obj)

Will set obj readonly status to false.

<bool> isreadonly(<table> obj)

Returns obj readonly status.

PreviousScript FunctionsNextInput

Last updated 3 years ago

Was this helpful?