Any Info on how to make a ban database GUI?

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