How do you add other admin commands to Spooks HD admin commands Video

Hello, so I dont know if this will have any ansers but I was following spooks hd video about how to make admin commands. SO ive made it and it works. What im wanting to do is ask you fellow robloxians if you know how to add other commands to it like TP or something Thanks. Youtube Video: https://www.youtube.com/watch?v=-PwxS47yjYg&list=LLScxEOOKRpM6iDUY8qm7Faw&index=3&t=787s

also let me know if this in the wrong category

Hey! Thanks for watching the video!

So, how do you add commands to the system?

Not too difficult, m.commands is a table that can be added to. If you want to add a command all you have to do is extend the table by adding a new entry to it:

m.commands = {
...,
commandName = function(arguments, caller)

end;
}

Something similar to that, and you can copy that argument as many times as you want. Just keep it within the table and you’ll be good to go!

BTW, that “…” is just to say that there are other commands - focus on the “commandName =” part!!