Whats the differences between using this
function GM:PlayerInitialSpawn(ply)
print(ply:Name())
end
and this
function idonthinkthisnamematters(ply)
print(ply:Name())
end
hooks.add(“PlayerInitialSpawn”, “cgminitualspawn”, idonthinkthisnamematters)
I recently had a problem with this where I called using GM and it overridden a default method causing some problems such as kill feeds not drawing.