How can i connect to a webserver with Roblox HttpService and have a textbox and button on there so i can execute commands over the website and Roblox returns "Action Successful" or "Action Failed"
How to use Roblox HttpService to connect to a webserver?
621 Views Asked by HELP ME At
1
There are 1 best solutions below
Related Questions in HTML
- How to store a date/time in sqlite (or something similar to a date)
- How to use custom font during html to pdf conversion?
- Storing the preferred font-size in localStorage
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- Is there any way to glow this bulb image like a real light bulb
- With non-graphical maps in Leaflet, zoomDelta doesn't work
- What can I do to improve my coding on both html and css
- Uncaught TypeError: google.maps.LatLng is not a constructor at init (script.js:7:13)
- Bootstrap modal not showing at the desired position on a web page when the screen size is smaller
- Displaying a Movie List on a Website Using Jinja2 and Bootstrap
- How to redirect to thank you page after submitting a Google form embedded into a Google Site?
- Storing selected language in localStorage
- Fences (parenthesis, braces) in HTML and MathML
- Understanding Scroll Anchoring Behavoir
Related Questions in LUA
- How to make a ServerScript wait for a LocalScript to fire a RemoteEvent
- global const variables in lua 5.4
- Backpack for roblox simulator game
- Calling an event with a delay in Roblox Studio. How to do?
- lghub lua script presskey
- LGHUB Lua script
- In pairs for loop not looping inside of another in pairs loop
- Lua syntax error expected '(' near update_rotation
- 64 unsigned integers in Lua 5.3/5.4 do not behave like in "Programming in Lua"
- How to write a lua pattern that is aware of escaped characters?
- having trouble installing neovim plugin
- Incorrect number comparison result (Lua)
- Lua: is there a need to use hash of string as a key in lua tables
- continuations in lua, is not working while trying extending it
- Neovim Kickstart config "E5113: Error while calling lua chunk: vim/_editor.lua:0: attempt to compare two table values" everytime I open neovim
Related Questions in WEBSERVER
- How can I read the header of request to webserver
- How to isolate PHP apps from each other on a local machine(Windows or Linux)?
- Watchdog Timer Reset on ESP32 using Webservers
- nginx set up reverse proxy from subfolder to a port
- Django miss static files after packaging with pyinstaller
- Problem with changing default NGINX 404 error page
- Web server doesnt output the website like in the project on localhost
- How can I call a SOAP webserver method in Vue.js?
- changing the node version used by apache web server
- Unravel JSON expression
- How Can I Add The iframe Code Of The Github Code To My Site?
- Can someone help me understand why my C webserver is throwing SIGABRT
- .NET httpserver. Get handle new request in current request handler
- Setting up LAMP on Ubuntu 22.04: PHP info not displaying in browser
- Multiple requests made Tornado's flush() method does not return anything
Related Questions in ROBLOX
- How to make a ServerScript wait for a LocalScript to fire a RemoteEvent
- Backpack for roblox simulator game
- Calling an event with a delay in Roblox Studio. How to do?
- Why does the roblox api keep 403'ing me?
- How do I move my arrow keys in a square until I stop it in AutoHotkey?
- Roblox API rejecting my question with 403? No further information
- Turn off Default R15 Fall Animation in flight mode in RobloxStudio with the programming language Lua
- how to change Value to something specific and not add to it?
- How do i make a "sanity" bar?
- How can I get CSRF-Token of a site?
- How do I ping a website to see if its valid before entering?
- Variable not updating in Roblox Studio / Lua
- Health Bar GUI In Roblox Studio Device Problem
- How to fix the "attempt to index nil with 'PrimaryPart'
- Food script works in studio but not in game
Related Questions in HTTPSERVICE
- How to diagnose Request_Cacnelled in HTTPERR log
- Encountered error in Axio request: read ECONNRESET to a remote server
- Exception: System.ServiceModel.Security.SecurityNegotiationException: Failed to establish a secure channel for SSL/TLS with the authority
- Custom Get In NodeJS?
- How to make backend as a bridge between external url and frontend for retrieving files?
- ReactJS how do I retrieve response.status in component?
- How to call inter dependent Httpservice Calls using RxJS Firstvaluefrom?
- Angular 13 how to use a Subscription in Pipe
- How can I make a request for two different domains in the same module in NestJs?
- nest.js HttpModule.registerAsync() ,how to get the original request headers /cookies?
- Nestjs HttpService error handling with AxiosRequestConfig's validateStatus function
- How to download data into JSON file from URL in nestjs?
- NestJs Cron Service
- How to use the basic authentication in NestJS?
- NestJS FilesInterceptor does not parse files from Axios request
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The client has to actively get that command from the server. A client sends a request, a server sends a response. That's the principle of HTTP.
Also the Roblox documentation says in the first line:
Your game server is the HTTP client.
Polling the HTTP server for new instructions is the only way to get a command from a remote server.
You host a website with that input form on that server. When the button is clicked you store that information on the server and when your Roblox client polls that information you provide it.
Please understand that I cannot explain the whole process in detail as it would require me to write a book or two. There are plenty of tutorials and books on HTTP, webhosting, HTML and sucht. The roblox part is well covered by the manual with its examples.