Hello, I want to make a command where it pulls the message like this
"Player's phone number is: xxxxxx". I want to create it for a mod that is being used /smss id number
function onSMSSCommand(cmd)
local id, message = cmd:match("^(%d+) (.+)$")
id = tonumber(id)
if id and message...