HTTP Enabled through a Script

How do I check if HTTP is enabled through a script?

1 Like

HttpService | Roblox Creator Documentation This maybe? Also turn on HTTP Services as well

Tried but

You’d have to use a hacky solution to check for now as you can’t do it by checking that property, I found this from a post, maybe this’ll work for you?

local HttpEnabled = pcall(game.HttpService.GetAsync, game.HttpService, 'https://www.google.com/');

Source:

2 Likes