Hello I am trying to formulate a script that prints the world model of the current weapon you have out. Here’s what I have but I don’t think it’ll work because of weapon not being defined in the function.
concommand.Add( "wmprint", function( ply, cmd, args )
ply:ChatPrint("Weapon model printed.")
print( Weapon:GetWeaponWorldModel() )
end )