Is there an easy way to get text out of the game window in play mode without involving HttpService? If not, I’ll relocate this thread to client features.
You could also use DataStores. The easiest would probably be to pick a snapshot of that super long list like you’ve done for the screenshot, save only that part to the DataStore, and then print it out into the output in Studio. That could potentially be more friendly than navigating through log files.
local data = {"ALL YOUR DATAS GO HERE"}
local yourUrl = "http://requestb.in/1792yhm1"
data = game:GetService("HttpService"):JSONEncode(data)
game:GetService("HttpService"):PostAsync(yourUrl, data)