How do i make a panel like that?
I HAVE THE CODE but i don’t know how to integrate it with Roblox. I want to get realtime players number, ban and kick right from the admin panel, check the logs, etc.
How do i make a panel like that?
If you’d like to get information sent from Roblox to your web-server you’ll have to use HTTPService.
You can use a POST request and therefore send it to your web-server included with all your data, it’s usually encoded with JSON.
And then you can receive that request with your web-server and change your UI dependant on that information.
Although if u wanna send information to your Roblox game you’ll have to use the GET request inside of Roblox and a POST request on your web-server.