Hey, just wanted to know if it was possible to listen for HTTP requests on a basic game script. Thanks.
Like host a HTTP server? No, that’s not possible with Roblox.
I mean, like, it prints every request that the HTTP service has gone through.
What do you mean by “gone through”?
HTTP requests are requests. A client (like your browser) asks for something (like this web page) from a server (like https://roblox.com). The server obliges and sends it back.
HttpService
lets you be a client in that scenario, that’s it.
Oh I see what you’re asking. Is there an event that fires whenever your game makes a request? Also no. But why would you want to do this?
Yes, I’d like to do this because I’ve found a backdoor in my game but just can’t locate it.
You could press Ctrl + Shift + F to search all scripts for HttpService and go from there.
Alright thanks, ill search further though.