Hey I have a question!
How do I disable the pop up on the bottom right when someone joins, AND the button on the top of the screen?
I will be putting credits for Kohl’s admin in game so don’t worry.
Hey I have a question!
How do I disable the pop up on the bottom right when someone joins, AND the button on the top of the screen?
I will be putting credits for Kohl’s admin in game so don’t worry.
I mean like running the Kohl’s command from the custom command I made, and counting the votes from it.
You can use the Settings ModuleScript in Roblox Studio to set the dashboardButtonRank
and joinNotificationRank
settings to false
, disabling them entirely, or you can set them to a number to restrict them to a higher rank.
Refer to the vote command implementation to use the same context._K.Remote.Vote
RemoteFunction in your custom command to count the votes.
However if you just want to run another command function from a command you can reference the command run function via context._K.Registry.commands.vote.run
for example.
How come this admin system doesnt have any ;warn command
Create a feature request on the GitHub and I’ll look into introducing warnings. My intention is to make sure I have the same functionality as the previous admin before I focus on adding new features.
Hi, is there api/way i can look at a player’s current rank/role?, I am trying to sync khols role management with a custom in-game admin ui, whitelisted for certain ranks
It would be nice if you can add more of tutorial how to use addon. I’m bit struggling with that.
In an addon you can use the _K.Auth.getRank
function to get someone’s highest given rank/role.