Im trying to use rabidrunners name module to spam name with random numbers in console
(forgive code if autism im new to this)
Code:
require( "name_enabler" )
function oldrandom()
math.random( 9999999, 99999999 )
end
shouldnamechange = CreateClientConVar( "name_change", "0", true, true );

function Fuck()
	if shouldnamechange:GetBool() then
		LocalPlayer():ConCommand( "name", oldrandom() )
	end
end
hook.Add( "Think", "jedfkjhdfg", Fuck )
but this spams the console with "ConCommand Blocked! (name)"
help pls?