Well, you can require a module from the client, but some modules will lock you from doing so as they’re not useful there, or shouldn’t be used on the client.
This module is one that is not to use on the client. You have to use Remote Events and such to make it work on the server.
Hey! Is there a possibility to give staff access a warning panel by group id? I would use this to give LRs access for warnings, and possibly ping a MR when they reached a certain amount!
Hey, I was using your module to make a simple admin gui, but for some reason the ban doesn’t seem to work. It prints that the user has been banned but it doesn’t actually ban them.
Here is my code (It’s in a function):
local function Ban(AdminId, Plr, Reason)
if Plr and table.find(Admins, AdminId) then
EZBan.Ban(Plr, Reason, false)
end
end
Here is what printed in the console:
Also, this is in an actual server and not in studio btw.