How can i send data from my webserver to my roblox game

Hello im trying to send data from my webserver to my roblox game.
I do not want to spam api GET requests to my server because i dont want any performance issues. Is there an other way to recive data from my server?
Any help appreciated.
-Rowan

1 Like

Unfortunately, spamming API get requests is the only way. You don’t have to spam them a lot though. HTTPService times out after 120 seconds, so you can use that time to stall the connection until something happens.

See Push technology.

Alright thank you very much :+1:

1 Like

I was reading about Realtime Push To Roblox Game Servers Via Http Long Polling and I think this will help you.