Making Custom admin commands

Hello everyone,

How could I make my own custom admin commands? Is there a place I could go to for an example for making admin commands? Is it possible for me to create admin commands or can Roblox only do that? I want to make my game unique because I want players to have an enjoy but not to have admin to abuse it.

5 Likes

You can use a player.Chatted event, the parameter will be a string of the message the player sent

Like put this in server script service

“‘ game.Players.Playeradded:Connect(function(player)
player.Chatted:Connect(function(message)

If message == “print text” then
print(“player has typed print text”)
End

End)

End)”’

4 Likes

Countless people have made their own game administrator services. It isn’t too hard, if you know what you’re doing. All you need is a keyword, and some code to activate. @blub20074 made a good note on how to make a keyword. In the toolbox, you can find a custom admin command script, made by someone who’s name I have forgotten. See that, and you’ll get a good grip on this coding stuff.

1 Like

Thank you, I will take your advice and get my own custom admin commands from Roblox or look on YouTube for more help with creating custom admin commands. I’m a beginner and just learning to script.

4 Likes