--@name --@author --@server function fuckOff(args) if args[1] ~= nil then local output = "" for i, v in pairs(args) do output = output..v.." " end output = string.trimRight(output) print(output) else print("Hello World!") end end core.modules.hello = { version = 69420, desc = "Hello world!", commands = { helloworld = { usage = "helloworld ", desc = "Prints either \"Hello World!\" or the arguments passed to it.", func = fuckOff, }, }, }