You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? Keep it simple and clear!
How to make admin commands (that dont appear in chat)
What is the issue? Include screenshots / videos if possible!
Making them not appear in chat
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
-- This is an example Lua code block
Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.
Alternatively, allow yourself to create a custom “terminal” or command bar, that is not integrated to the chat system. This way will hide the commands well without anyone knowing that you were typing.
Depending on the method of scripting, support for doing /e before commands may or may not work. A lot of admin commands use string.split to get the arguments of a given command, and adding a /e before it will push off the argument that is supposed to be the prefix. The ones that do work with /e (Kohl’s, Adonis) likely have support manually implemented.
The entire point of admin commands is to streamline administrator actions in your game without having to write extensive lines of code for each action.
Yes, the developer console is not being prevented, but the point of admin commands is to make the process shorter and simpler (especially for people less experienced with Lua)