Any Info on how to make a ban database GUI?

I’m not asking by all means for someone to write me a script, i’m just asking for the appropriate sites that I can look at and read to piece this thing together. I’m trying to make the mod/admin be able to search the name of the user and have all his info pop up. Ban date, reason, roblox join date plus an additional list below that shows banned users. Thanks.

Ok let’s break this down

For your OP, you’d need to look up on how DataStores work (Which basically handles all Data Communication) that’ll be handled on the server side, so that you know who’s banned & who’s not

If you’re talking about using UI Objects, you can use a TextBox so that a Mod/Admin is able to chat & type what user they want to search for, and after confirming their option you can send a RemoteEvent to fire from the client to the server & retrieve the Data from the server-side, detecting if the Player’s ID given is equal to what you searched for

For the ban date you could assign string values, join date (If you want to be specific) would require some string manipulation by converting with os.time()/os.date(), and for the list of Banned Users you could assign a table that you can save/load anytime that shows the total users banned inside the game

I’ll give the references

You could also look at this as well for a good reference point:

1 Like

Thanks, I am familiar with remotes, textbox, though my knowledge on datastores is quite limited. I appreciate the thorough reply, you’re a beauty (no homo!). :slight_smile:

2 Likes