So i have this code for Gmod
concommand.Add( “MyCommand”, myFunc )
function myfunc(name)
Msg("Hello there "…name)
end
myfunc(“Jeff”)
myfunc(“Josh”)
myfunc(“Alan”)
myfunc(“Andrew”)
myfunc(“Ryan”)
Could someone please tell me why it does not work?
Thanks