"gui" is of course for gui calls, however it works the same as "main" so you could read memory here but it is not recommended
-- usage 1:
callback.add("main", function()
-- your function code here
end)
-- usage 2:
local function my_awesome_function()
-- your function code here
end
callback.add("main", my_awesome_function)