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
  • Get Raw Metatable
  • Is Read Only
  • Set Raw Metatable
  • Set Read Only
  1. Functions

Table

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

Get Raw Metatable

<table> getrawmetatable(<table> a1)  
  • Returns the __metatable of a1.


Is Read Only

<bool> isreadonly(<table> a1)  
  • Returns if a1 is read-only.


Set Raw Metatable

<bool> setrawmetatable(<table> a1, <table> a2)
  • Sets the __metatable of a1 to a2.


Set Read Only

<void> setreadonly(<table> a1, <bool> a2)  
  • Sets the read-only value of a1 to a2.


PreviousScriptNextSignal

Last updated 5 months ago

đŸ’ģ
📊