My output reads "http requests are not enabled" How do I turn them on. P.S. I have over 400 lines of code so I'm not going to post them all here. Yes, this is from Roblox.
go to your Explorer, click on HttpService and look in the Properties and click HttpEnabled
or use this script in the command bar at the bottom of Studio
game.HttpService.HttpEnabled = true
i guess thats what you meant
To enable HTTP requests, head over to the Explorer Tab, click on Httpservice, then open the properties tab. From there, make sure Httpserver is highlighted, and then click enable. If Httpservice is not in the Explorer tab, go to the Model Tab, and click insert advanced services. After that, a GUI will pop up, and ask you what you want to insert. Then, from there, follow the first few steps. Thanks! Hope I helped you.
Also, if you would like to do it in a more simplified way, here is a line of code you can put in the the Command Bar, and/or make a script, and put it in ServerScriptService.
game.HttpService.HttpEnabled = true
If you are silly and don't wanna create the httpservice thingy then do this
game:GetService("HttpService").HttpEnabled = true