Hello, I’m trying to create an application center for my SCPF, similar to the Nova Corporation application center.
I’m currently using trello to hold the applications and the admission staff check them from there. From what I’ve experienced so far, it’s not the best way to do this.
Here is what I want to do but I’m not sure how to do it.
I want to have a in-game staff panel that only staff will be able to view. (1 player servers by the way)
If anyone submits an application through the Roblox game, I want the staff panel to show that there is an application. The staff will have the option to accept, deny, or hold the application. The results of the application will show up for all the other staff viewing the applications in different servers. I also want the user who submitted the application to see the status of the app from in the game.
I’m guessing I’d have to use a datastore system or something to achieve this, though, I’m not sure how to do that what so ever. If someone could help me, that would be amazing!
Is what you’re looking for. It has logs with application requests, and account age settings, in addition to auto ranking (If wanted).
Hi @CoreyTimes
if you’re looking for something of custom you will have to work hard for what you ask for.
First of all you will have to understand about a player and staff by checking the rank
and in this case showing a frame that allows him to read the applications
After you will have to create an efficient database system, at this point I recommend using the json format (For Store Question and others data) and for each key maybe put the player’s id,
For this I would use
OrderedDataStore & For Retrive data OrderedDataStore:GetSortedAsync
However, you can also use other ways to store your data such as: https://firebase.google.com/ → Realtime Datastore → REST API
Clearly these are general indications of how to do it, if you don’t know how to do it I suggest you maybe try to ask someone else your friend or with a commission
I hope I have clarified your ideas
Ah, ok.
What you could do is use Remote events. When a player clicks the button, it sends it to trello. It can set it as the description, etc. Here is a script example of creating a card:
Trello_Module:CreateCard("–TITLE NAME–")
Now, you do need the trello module. I know it’s not a script but yeah. Anyways, unsure how to set the description but I’m pretty sure you get it.