Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I enable http requests?

Asked by
Akozta 40
7 years ago

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.

0
game.HttpService.HttpEnabled = true or in Explorer, go to the bottom, click HttpService, and in Properties click HttpEnabled's check box. Smaltin 46 — 7y

3 answers

Log in to vote
1
Answered by 7 years ago
Edited 7 years ago

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

Ad
Log in to vote
0
Answered by 7 years ago

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
Log in to vote
0
Answered by
Filipalla 504 Moderation Voter
7 years ago

If you are silly and don't wanna create the httpservice thingy then do this game:GetService("HttpService").HttpEnabled = true

Answer this question