I’m not using loadstring, I’m using a Lua VM. I did this using only GET requests. For discord code execution, the bot writes the code to a database then every 2 seconds the Lua script asks an expressjs server to retrieve code from the database. Basically the same thing for all other discord commands. Changing stuff from the game only goes 1-way via asking the expressjs server to write to a database. And what do you mean by displaying the area around the player? You send an image of the area around the player to a discord server or you can view it from the game? Datastores are also inefficient as data loss and datastores going down are a problem. I’m using a google database, so that will probably not go down any time soon. And if you think spamming chat or textboxes is a problem (as i have textbox and chat logs) it won’t be a problem as i have a command called $ratelimit which limits the amount of requests sent to my webhook. And what do you mean by cutting down to enter player names and make options appear.
Its called discord webhooks, roblox allows you to use 3rd party websites to connect ingame.
Discord webhooks can’t communicate with Roblox, only 1 way aka Roblox to Discord, here I’m banning somebody via Discord.
I think it’s trello that can am I right?
And not only via Discord, a website too, and I can also execute Lua from Discord. A webserver would have to return a value to a Lua script which is what I’m doing.
Not at all, I’m using google firebase and I can just type $ban playername inf reason in Discord and they will be banned in every server that they are in currently.
Oh I though trello did, by trello bans and stuff.
No, I’m using a real database. It’s a bit complicated to explain.
Woah! that’s so very cool! men I wish I can make like that
But yeah, Thank you for reading this. have a nice day!
Thank you! You have a nice day too!
If anybody wants to you can leave suggestions!
Wow! Looks amazing! Do you do commissions?
No, I do not, as I am a solo developer.
Oh, alright! Will you make it a model so people can use it?
Probably not because it requires you to have a discord server, express server, a database, Lua scripts, and a bunch of requirements. And I also don’t really like my things open-sourced, but I’m sure somebody will release something just like this someday!
Alrighty! May you add me on Discord? So we can chat more off-forum. spec!#1436
dude this is so cool i have never seen like that in my life
may be you can make a game in roblox which can be played on discord using commands like u use for dankmemer
I mean it would be possible but the problem is every packet would be sent every like 450 requests per minute aka 1 request every 0.125 seconds. Meaning that the average player would have a ping of 150. And some people in Roblox have pings of like 220 so that means pings of 250 for bad connections. I mean it would be playable but competitive wouldn’t be so good.
That’s a pretty solid system then.
As for getting the area around the player what I do is I turn the area around the player into text like a basic part saver. I use palls to retrieve all the properties and this is then combined, this text can then loaded. Saving this way is very quick which means I could even take multiple captures over the course of a few seconds to basically spectate the player from another server. This isn’t exactly compatible with discord though, you could save and retrieve the data from discord but you would have to be in game to load all the parts.
You are using webhooks so if the players account is linked to their discord account in the database you can call the players name and have the bot respond. You can then react with emojis and the bot can detect that.
Every player who is banned or has a rank is in the database. If you ban a user not in database, it checks if that user exists in Roblox first then it creates a new file in the database for that user. Did you create a custom image format for your capturing feature?