How do I check if HTTP is enabled through a script?
1 Like
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