Chat Modules and Configuration

Guys, i have tried to make the /me command work on chat configuration, its simple, i am basically following steps on AllowMeCommand = true but with a change on MeCommand Module that is what the client message as a /AdminMe -message- but isnt working.

the second problem its with the roblox tutorial about Explode Command Module, basically its not working.
Explode Command Tutorial :
https://developer.roblox.com/en-us/articles/Creating-An-Admin-Command

I wait good devs to solve this :wink:

1 Like

It’s not mandatory that you edit the default chat system in order to create admin commands. In-fact, most premade scripts don’t even modify the default Roblox chat at all, as far as I know. Instead having a separate script that controls the execution of commands. The Admin Framework I’ve made for myself does this. With no modification of the chat scripts made. It’s not very hard to get started on as well.

I’d recommend going by connecting the chatted event to a function if the player is a moderator or is defined someplace that they can use the command. If the player has typed out ‘/adminme (message)’. You can then utilize StarterGui’s SetCore ‘ChatMakeSystemMessage’ function to send out the message you desire from it to all clients.

1 Like