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

How do roblox servers receive packets?

Asked by 3 years ago

Hello,

I'm wondering how a roblox server would take in packets from an external source, such as a server I manage, or a website address. I'm very new to networking, and I want to be able to send strings/booleans to variables in game.

0
you want to receive http data correct? Raccoonyz 1092 — 3y
0
Edit: Not trying to hack/modify servers, instead attempting to send data to a datastore from a secure source. wowbigplays 0 — 3y
0
Yes, I want to receive HTTP data. wowbigplays 0 — 3y

1 answer

Log in to vote
0
Answered by
Raccoonyz 1092 Donator Moderation Voter
3 years ago

It's a little tricky to receive data - much easier to grab data. However, it is possible. One way is to constantly have the Roblox server send GET requests, but never provide anything until you need to give it some stuff. An easier way would be to just have a loop that would check for new updates in a database. This would require a hefty delay though.

0
I'm seeing that now, how would you grab data from a source? wowbigplays 0 — 3y
0
HTTP GET requests. Raccoonyz 1092 — 3y
0
HttpService:GetAsync does the trick. Raccoonyz 1092 — 3y
0
Got it, i'm currently reverse engineering a tutorial to pull from Glitch. wowbigplays 0 — 3y
View all comments (6 more)
0
It's fairly easy if you have knowledge of node.js. Raccoonyz 1092 — 3y
0
I have NO knowledge of node.js. wowbigplays 0 — 3y
0
DM me on Discord at Raccoonyz#0001. I can help you out. Raccoonyz 1092 — 3y
0
Got it. wowbigplays 0 — 3y
0
Raccoonyz#2490, my mistake. Raccoonyz 1092 — 3y
0
Sent it wowbigplays 0 — 3y
Ad

Answer this question