I was wondering if there is any possible way to make commands? For example: I say "test" in the console and it
reads a function telling it to print("Test"). On another game i use lua in it would work somthing like this:
admin.Chatted:connect(function(msg)
if string.sub(msg,1,4)=="test" then
print("Test")
end
end)
Oh, ok thanks.
It's a good idea, but it could be tricky.