Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
isreadonly(t: table): boolean
t
table
true
false
<<<<<<< HEAD local readonly = isreadonly(getrawmetatable(game)) ======= -- isreadonly(t: table): boolean >>>>>>> 50e30f53759b0538759af25c9b271514aa2c9290
local t = {hp = 100} print(isreadonly(t)) --> false setreadonly(t, true) print(isreadonly(t)) --> true