Wave
  • 👋Introduction
  • 🌊Getting Started
  • đŸ’ģFunctions
    • 🎮Console
    • 🌎Environment
    • 📂File System
    • đŸĒHooking
    • đŸ–ąī¸Input
    • 💡Miscellaneous
    • đŸ“ŗNetwork
    • đŸĒžReflection
    • đŸ•šī¸Script
    • 📊Table
    • đŸ“ļSignal
  • 📚Libraries
    • 👨‍🎤Actors
    • đŸ—ƒī¸Cache
    • 👾Crypt
    • 🐞Debug
    • đŸ–ī¸Drawing
    • đŸ–Ĩī¸ImGui
    • 📎WebSocket
  • âœī¸Changelogs
  • 📃Credits
Powered by GitBook
On this page
  • Check Caller
  • Get Hidden Property
  • Is Executor Closure
  • Is Lua Closure
  • Loadstring
  • Set Hidden Property
  • Set Scriptable
  1. Functions

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.


PreviousNetworkNextScript

Last updated 5 months ago

đŸ’ģ
đŸĒž