If you’re setting the value of _G within a script with no yields (waits), you can safely task.wait in any other scripts to ensure that the data is set.
If you want to add an extra level of safety, you can wrap access to _G in a while loop
local scripts = _G.Scripts
while not scripts then
task.wait()
scripts = _G.Scripts
end