### Details file.AsyncRead doesn't work in the Menu State. Tested on all Branches ### Steps to reproduce ```lua file.Write("example.txt", "Example") -- creating a file for testing file.AsyncRead("example.txt", "DATA", function(_, _, status, content) print("Async Read: " .. status, content) end) print("Read: " .. file.Read("example.txt", "DATA")) ``` Output: ```lua Read: Example ```