isreadonly
Will return true/false, depending if the table provided is read-only or not.
function isreadonly(table: { any }): booleanParameter
table- The table to check read-only state on.
Example
print(isreadonly({})) -- Output: false
print(isreadonly(getrawmetatable(game))) -- Output: trueLast updated