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.
debug.setinfo(func: function | number, infoTable: table): ()
func
infoTable
table
name
void
local function test() end debug.setinfo(test, { name = "custom_name" }) print(debug.getinfo(test).name) -- custom_name
debug.setinfo(1, { name = "fake_frame" })