I want to make a table with a script name and the code as the value then use a i,v loop to do something with it, but when I use the script it only prints "a" (from the table and not the loop) I'm not sure how I can make this work.
local scripts = { ["Script"] = print("a"), } for name, value in pairs(scripts) do print(name, value) end