đŸĒžReflection

These are all of the functions revolving reflections that Wave supports.

Check Caller

<bool> checkcaller(<void>)  
  • Returns true if the current thread was created by Wave.


Get Hidden Property

<variant> gethiddenproperty(<Instance> Object, <string> Property)
  • Returns the value of the property that cannot be accessed through Lua.


Is Executor Closure

<bool> isexecutorclosure(<function> a1)
  • Returns true if a1 was created by Wave.


Is Lua Closure

<bool> islclosure(<function> a1)  
  • Returns true if a1 is an L Closure.


Loadstring

<function> loadstring(<string> chunk, <string?> chunkName)
  • Loads chunk as a Lua function with optional chunkName and returns it.


Set Hidden Property

<void> sethiddenproperty(<Instance> Object, <string> Property, <variant> Value)
  • Sets the given property to new value.


Set Scriptable

<void> setscriptable(<Instance> Object, <string> Property, <bool> toggle)
  • Sets the property's scriptable state to toggle.


Last updated