> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# makewriteable

> Marks a table as writable and returns no values.

<div className="real-function-page">
  ```lua theme={null}
  makewriteable(target: table)
  ```

  ## Argumen

  <ParamField path={"target"} type={"table"} required>
    Table to mark as writable.
  </ParamField>

  ## Contoh

  Set a table's readonly flag to false.

  ```lua theme={null}
  local target = {}

  makereadonly(target)
  print(isreadonly(target))

  makewriteable(target)
  print(isreadonly(target))
  ```
</div>
