> ## 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.

# makereadonly

> Marks a table as readonly and returns no values.

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

  ## 인수

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

  ## 예제

  Set a table's readonly flag to true.

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

  makereadonly(target)

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